Some image files contain metadata that you can read to determine features of the image. Like, a digital photograph might contain metadata that you can read to determine the Author,Title and Keywords of the image.
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="ImageMetaData.aspx.cs" Inherits="ImageMetaData" %>
Untitled Page
...
How to store a record in xml file from a windows form and extract through Reflection..(A perfect example of reflection)
Reflection.cs Browse folder to store record in xml file and again browse to extract from the xml file all the properties are setting in settings.cs and all constants are defined in Constants.cs and Reflection.Designer contains the designer view..using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using...
Sudoku-Checker in ASP.Net using C#
# region directivesusing System;using System.Collections;#endregionnamespace sudokuChecker{ class SudokuMainExample { static void Main() { SudokuCheck objectSudokuCheck = new SudokuCheck(); int[,] Board=new int[9,9]; int countnumberofInput=0; string menuStatus="y"; string...