A Developer Journey who codes for fun

Daily Dose Of Code

  • Home
  • Dot.Net Basics
    • .Net Basics
      • CTS
      • CLS
      • CLR
      • Strong Vs Weak Ref
      • .Net Framework
      • What is Manifest
    • Memory Management
      • Garbage Collection 1
      • Garbage Collection 2
      • Circular Reference
  • C Sharp
    • Abstract Class in C#
    • Interfaces in C#
    • Value type by Val and By Ref
    • Var keyword
    • Null Coalescing Operator
    • Buit-in code snippets
  • OOPS
    • Abstraction and Encapsulation
    • Polymorphism
    • Inheritence
    • Aggregation
  • Threading
    • Delegates
      • Calling Delegate using Invoke, BeginInvoke
      • Multicast Delegate
      • Exception Handling in Multicast Delegate
      • Action
      • Predicate
      • Func
    • Synchronization
    • Thread Pool
    • Exception Handling
    • TPL
  • Design Pattern
    • Creational Patterns
      • Singleton Pattern
      • Factory Pattern
      • Abstract Factory Pattern
      • Prototype Pattern
      • Builder Pattern
    • Structural Patterns
      • Adapter Pattern
      • Bridge Pattern
      • Composite Pattern
      • Proxy Pattern
      • Facade Pattern
      • Decorator Pattern
      • Flyweight Pattern
    • Behavioral Patterns
      • Command Pattern
      • Interpreter Pattern
      • Iterator Pattern
      • Mediator Pattern
      • Memento Pattern
      • Observer Pattern
      • State Pattern
      • Strategy Pattern
      • Visitor Pattern
      • Chain Of Responsibility Pattern
      • Template Pattern
  • Data Structures
    • Generic List in C#
    • 2d array to 1d array
    • 3d arrayto 1d array
    • Linked List
      • Singly Linked List in C#
    • Queue
      • Dummy Data 1
    • Stack
      • Dummy Data 2
    • Tree
      • Dummy Data 3
    • Graph
      • Dummy Data 4
  • WCF
    • WCF Service using VS 2015
  • Scripts
    • Chrome Extensions
      • Create a Chrome Extension
      • Facebook autologout script
      • Gmail autologout script

How to store a record in xml file from a windows form and extract through Reflection..(A perfect example of reflection)

 Unknown     3:15 AM     No comments   

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 System.Text;
using System.Windows.Forms;
using System.Collections;
using System.Text.RegularExpressions;

namespace ReflectionExample
{
public partial class Reflection : Form
{
private bool boolEmailValidation = false;
private bool boolPercentValidation;
public Reflection()
{
InitializeComponent();
}

Settings settings = new Settings();

private void Form1_Load(object sender, EventArgs e)
{

}
private void RetrieveButton_Click(object sender, EventArgs e)
{
if (openFileDialog1.ShowDialog() == DialogResult.OK)
{
settings.Load(openFileDialog1.FileName);
UpdateSettings();
}
}

private void UpdateSettings()
{
textStudentName.Text = settings.StudentName;
textFathersName.Text = settings.FatherName;
textInstituteName.Text = settings.Institute;
textLastDegree.Text = settings.LastDegree;
textPercentage.Text = settings.Percentage;
textEmailId.Text = settings.EmailId;
SaveButton.Visible = false;
}

private void SaveButton_Click(object sender, EventArgs e)
{
if (boolPercentValidation)
{
if (boolEmailValidation)
{
if (saveFileDialog1.ShowDialog() == DialogResult.OK)
{
settings.Save(saveFileDialog1.FileName);
FunctionEmpty();
}
}
else
{
MessageBox.Show(Constants.EmailError, Constants.Error1, MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
else
{
MessageBox.Show(Constants.PercentageError, Constants.Error1, MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}

private void FunctionEmpty()
{
textStudentName.Text = string.Empty;
textFathersName.Text = string.Empty;
textInstituteName.Text = string.Empty;
textLastDegree.Text = string.Empty;
textPercentage.Text = string.Empty;
textEmailId.Text = string.Empty;
}
private void textStudentName_TextChanged(object sender, EventArgs e)
{
settings.StudentName = textStudentName.Text;
}

private void textFathersName_TextChanged(object sender, EventArgs e)
{
settings.FatherName = textFathersName.Text;
}

private void textInstituteName_TextChanged(object sender, EventArgs e)
{
settings.Institute = textInstituteName.Text;
}

private void textLastDegree_TextChanged (object sender, EventArgs e)
{
settings.LastDegree = textLastDegree.Text;
}

private void textPercentage_TextChanged (object sender, EventArgs e)
{
boolPercentValidation = true;
Regex objNotNaturalPattern = new Regex(Constants.PercentageRegularExpression);
if (!objNotNaturalPattern.IsMatch(textPercentage.Text))
{
if (textPercentage.Text != string.Empty)
{
int Marks = Convert.ToInt32(textPercentage.Text);
if (Marks > 100)
{
boolPercentValidation = false;
}
settings.Percentage = textPercentage.Text;
}
}
else
{
boolPercentValidation = false;
}


}

private void textEmailId_TextChanged (object sender, EventArgs e)
{
boolEmailValidation = true;
Regex objNotNaturalPattern = new Regex(Constants.EmailIdRegularExpression);
if (objNotNaturalPattern.IsMatch(textEmailId.Text))
{
boolEmailValidation = true;
settings.EmailId = textEmailId.Text;
}
else
{
boolEmailValidation = false;
}

}

private void CancelButton_Click(object sender, EventArgs e)
{
this.Dispose();
}
}
}

/*Reflection.Designer View*/

namespace ReflectionExample
{
partial class Reflection
{
///
/// Required designer variable.
///

private System.ComponentModel.IContainer components = null;

///
/// Clean up any resources being used.
///

/// true if managed resources should be disposed; otherwise, false.
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}

#region Windows Form Designer generated code

///
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
///

private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
this.Namelabel = new System.Windows.Forms.Label();
this.textStudentName = new System.Windows.Forms.TextBox();
this.FNamelabel = new System.Windows.Forms.Label();
this.textFathersName = new System.Windows.Forms.TextBox();
this.Instituelabel = new System.Windows.Forms.Label();
this.textInstituteName = new System.Windows.Forms.TextBox();
this.Institutelabel = new System.Windows.Forms.Label();
this.textLastDegree = new System.Windows.Forms.TextBox();
this.Percentagelabel = new System.Windows.Forms.Label();
this.textPercentage = new System.Windows.Forms.TextBox();
this.Emaillabel = new System.Windows.Forms.Label();
this.textEmailId = new System.Windows.Forms.TextBox();
this.SaveButton = new System.Windows.Forms.Button();
this.RetrieveButton = new System.Windows.Forms.Button();
this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog();
this.CancelButton = new System.Windows.Forms.Button();
this.numericUpDown1 = new System.Windows.Forms.NumericUpDown();
this.errorProvider1 = new System.Windows.Forms.ErrorProvider(this.components);
((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
this.SuspendLayout();
//
// Namelabel
//
this.Namelabel.AutoSize = true;
this.Namelabel.Location = new System.Drawing.Point(68, 36);
this.Namelabel.Name = "Namelabel";
this.Namelabel.Size = new System.Drawing.Size(35, 13);
this.Namelabel.TabIndex = 0;
this.Namelabel.Text = "Name";
//
// textStudentName
//
this.textStudentName.Location = new System.Drawing.Point(185, 33);
this.textStudentName.MaxLength = 15;
this.textStudentName.Name = "textStudentName";
this.textStudentName.Size = new System.Drawing.Size(149, 20);
this.textStudentName.TabIndex = 1;
this.textStudentName.TextChanged += new System.EventHandler(this.textStudentName_TextChanged);
//
// FNamelabel
//
this.FNamelabel.AutoSize = true;
this.FNamelabel.Location = new System.Drawing.Point(28, 76);
this.FNamelabel.Name = "FNamelabel";
this.FNamelabel.Size = new System.Drawing.Size(75, 13);
this.FNamelabel.TabIndex = 2;
this.FNamelabel.Text = "Father\'s Name";
//
// textFathersName
//
this.textFathersName.Location = new System.Drawing.Point(185, 73);
this.textFathersName.MaxLength = 15;
this.textFathersName.Name = "textFathersName";
this.textFathersName.Size = new System.Drawing.Size(149, 20);
this.textFathersName.TabIndex = 3;
this.textFathersName.TextChanged += new System.EventHandler(this.textFathersName_TextChanged);
//
// Instituelabel
//
this.Instituelabel.AutoSize = true;
this.Instituelabel.Location = new System.Drawing.Point(59, 125);
this.Instituelabel.Name = "Instituelabel";
this.Instituelabel.Size = new System.Drawing.Size(44, 13);
this.Instituelabel.TabIndex = 4;
this.Instituelabel.Text = "Institute";
//
// textInstituteName
//
this.textInstituteName.Location = new System.Drawing.Point(185, 122);
this.textInstituteName.MaxLength = 25;
this.textInstituteName.Name = "textInstituteName";
this.textInstituteName.Size = new System.Drawing.Size(149, 20);
this.textInstituteName.TabIndex = 5;
this.textInstituteName.TextChanged += new System.EventHandler(this.textInstituteName_TextChanged);
//
// Institutelabel
//
this.Institutelabel.AutoSize = true;
this.Institutelabel.Location = new System.Drawing.Point(38, 174);
this.Institutelabel.Name = "Institutelabel";
this.Institutelabel.Size = new System.Drawing.Size(65, 13);
this.Institutelabel.TabIndex = 6;
this.Institutelabel.Text = "Last Degree";
//
// textLastDegree
//
this.textLastDegree.Location = new System.Drawing.Point(185, 171);
this.textLastDegree.MaxLength = 30;
this.textLastDegree.Name = "textLastDegree";
this.textLastDegree.Size = new System.Drawing.Size(149, 20);
this.textLastDegree.TabIndex = 7;
this.textLastDegree.TextChanged += new System.EventHandler(this.textLastDegree_TextChanged);
//
// Percentagelabel
//
this.Percentagelabel.AutoSize = true;
this.Percentagelabel.Location = new System.Drawing.Point(38, 220);
this.Percentagelabel.Name = "Percentagelabel";
this.Percentagelabel.Size = new System.Drawing.Size(62, 13);
this.Percentagelabel.TabIndex = 8;
this.Percentagelabel.Text = "Percentage";
//
// textPercentage
//
this.textPercentage.Location = new System.Drawing.Point(185, 217);
this.textPercentage.MaxLength = 3;
this.textPercentage.Name = "textPercentage";
this.textPercentage.Size = new System.Drawing.Size(149, 20);
this.textPercentage.TabIndex = 9;
this.textPercentage.TextChanged += new System.EventHandler(this.textPercentage_TextChanged);
//
// Emaillabel
//
this.Emaillabel.AutoSize = true;
this.Emaillabel.Location = new System.Drawing.Point(56, 274);
this.Emaillabel.Name = "Emaillabel";
this.Emaillabel.Size = new System.Drawing.Size(44, 13);
this.Emaillabel.TabIndex = 10;
this.Emaillabel.Text = "Email Id";
//
// textEmailId
//
this.textEmailId.Location = new System.Drawing.Point(185, 271);
this.textEmailId.MaxLength = 30;
this.textEmailId.Name = "textEmailId";
this.textEmailId.Size = new System.Drawing.Size(149, 20);
this.textEmailId.TabIndex = 11;
this.textEmailId.TextChanged += new System.EventHandler(this.textEmailId_TextChanged);
//
// SaveButton
//
this.SaveButton.Location = new System.Drawing.Point(185, 361);
this.SaveButton.Name = "SaveButton";
this.SaveButton.Size = new System.Drawing.Size(75, 23);
this.SaveButton.TabIndex = 12;
this.SaveButton.Text = "Save";
this.SaveButton.UseVisualStyleBackColor = true;
this.SaveButton.Click += new System.EventHandler(this.SaveButton_Click);
//
// RetrieveButton
//
this.RetrieveButton.Location = new System.Drawing.Point(281, 361);
this.RetrieveButton.Name = "RetrieveButton";
this.RetrieveButton.Size = new System.Drawing.Size(75, 23);
this.RetrieveButton.TabIndex = 13;
this.RetrieveButton.Text = "Retrieve";
this.RetrieveButton.UseVisualStyleBackColor = true;
this.RetrieveButton.Click += new System.EventHandler(this.RetrieveButton_Click);
//
// openFileDialog1
//
this.openFileDialog1.FileName = "openFileDialog1";
this.openFileDialog1.Filter = "XML Files|*.xml|All Files|*.*";
//
// saveFileDialog1
//
this.saveFileDialog1.DefaultExt = "xml";
this.saveFileDialog1.Filter = "XML Files|*.xml|All Files|*.*";
//
// CancelButton
//
this.CancelButton.Location = new System.Drawing.Point(89, 361);
this.CancelButton.Name = "CancelButton";
this.CancelButton.Size = new System.Drawing.Size(75, 23);
this.CancelButton.TabIndex = 14;
this.CancelButton.Text = "Cancel";
this.CancelButton.UseVisualStyleBackColor = true;
this.CancelButton.Click += new System.EventHandler(this.CancelButton_Click);
//
// numericUpDown1
//
this.numericUpDown1.Location = new System.Drawing.Point(185, 245);
this.numericUpDown1.Name = "numericUpDown1";
this.numericUpDown1.Size = new System.Drawing.Size(120, 20);
this.numericUpDown1.TabIndex = 15;
//
// errorProvider1
//
this.errorProvider1.ContainerControl = this;
//
// Reflection
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(416, 406);
this.Controls.Add(this.numericUpDown1);
this.Controls.Add(this.CancelButton);
this.Controls.Add(this.RetrieveButton);
this.Controls.Add(this.SaveButton);
this.Controls.Add(this.textEmailId);
this.Controls.Add(this.Emaillabel);
this.Controls.Add(this.textPercentage);
this.Controls.Add(this.Percentagelabel);
this.Controls.Add(this.textLastDegree);
this.Controls.Add(this.Institutelabel);
this.Controls.Add(this.textInstituteName);
this.Controls.Add(this.Instituelabel);
this.Controls.Add(this.textFathersName);
this.Controls.Add(this.FNamelabel);
this.Controls.Add(this.textStudentName);
this.Controls.Add(this.Namelabel);
this.Name = "Reflection";
this.Text = "Student-Information";
this.Load += new System.EventHandler(this.Form1_Load);
((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();

}

#endregion

private System.Windows.Forms.Label Namelabel;
private System.Windows.Forms.TextBox textStudentName;
private System.Windows.Forms.Label FNamelabel;
private System.Windows.Forms.TextBox textFathersName;
private System.Windows.Forms.Label Instituelabel;
private System.Windows.Forms.TextBox textInstituteName;
private System.Windows.Forms.Label Institutelabel;
private System.Windows.Forms.TextBox textLastDegree;
private System.Windows.Forms.Label Percentagelabel;
private System.Windows.Forms.TextBox textPercentage;
private System.Windows.Forms.Label Emaillabel;
private System.Windows.Forms.TextBox textEmailId;
private System.Windows.Forms.Button SaveButton;
private System.Windows.Forms.Button RetrieveButton;
private System.Windows.Forms.OpenFileDialog openFileDialog1;
private System.Windows.Forms.SaveFileDialog saveFileDialog1;
private System.Windows.Forms.Button CancelButton;
private System.Windows.Forms.NumericUpDown numericUpDown1;
private System.Windows.Forms.ErrorProvider errorProvider1;
}
}

/*settings.cs*/
/*This class contains how to create a xml file how data can store in xml file and how can we extract*/

using System;
using System.Collections.Generic;
using System.Text;
using System.IO;
using System.Xml;
using System.Drawing;
using System.Reflection;
using System.Xml.Serialization;


namespace ReflectionExample
{
#region - public abstract class:XmlSerializable -

public class XmlSerializable
{
#region - public virtual void:Save(string path) -

public virtual void Save(string path)
{
StreamWriter objStreamWriter = new StreamWriter(path);
XmlSerializer objXmlSerializer = new XmlSerializer(this.GetType());
objXmlSerializer.Serialize(objStreamWriter, this);
objStreamWriter.Close();
}

#endregion

#region - public virtual void: Load(string path) -

public virtual void Load(string path)
{
if (File.Exists(path))
{
StreamReader objStreamReader = new StreamReader(path);
XmlTextReader objXmlTextReader = new XmlTextReader(objStreamReader);
XmlSerializer objXmlSerializer = new XmlSerializer(this.GetType());
object obj;
if (objXmlSerializer.CanDeserialize(objXmlTextReader))
{
obj = objXmlSerializer.Deserialize(objXmlTextReader);
Type objType = this.GetType();
PropertyInfo[] properties = objType.GetProperties();
foreach (PropertyInfo objProperty in properties)
{
objProperty.SetValue(this, objProperty.GetValue(obj, null), null);
}
}
objXmlTextReader.Close();
objStreamReader.Close();
}
}

#endregion
}
#endregion

public class Settings : XmlSerializable
{

[XmlIgnore()]
public string StudentName
{
get { return _StudentName; }
set { _StudentName = value; }
}
private string _StudentName = string.Empty;

[XmlElement("StudentName")]
public string XmlStudentName
{
get { return _StudentName; }
set { _StudentName = value; }
}

[XmlIgnore()]
public string FatherName
{
get { return _FatherName; }
set { _FatherName = value; }
}
private string _FatherName = string.Empty;

[XmlElement("FatherName")]
public string XmlFatherName
{
get { return _FatherName; }
set { _FatherName = value; }
}
[XmlIgnore()]
public string Institute
{
get { return _Institute; }
set { _Institute = value; }
}
private string _Institute =string.Empty;
[XmlElement("Institute")]
public string XmlInstitute
{
get { return _Institute; }
set { _Institute = value; }
}
[XmlIgnore()]
public string LastDegree
{
get { return _LastDegree; }
set { _LastDegree = value; }
}
private string _LastDegree = string.Empty;
[XmlElement("LastDegree")]
public string XmlLastDegree
{
get { return _LastDegree; }
set { _LastDegree = value; }
}
[XmlIgnore()]
public string Percentage
{
get { return _Percentage; }
set { _Percentage = value; }
}
private string _Percentage = string.Empty;
[XmlElement("Percentage")]
public string XmlPercentage
{
get { return _Percentage; }
set { _Percentage = value; }
}
[XmlIgnore()]
public string EmailId
{
get { return _EmailId; }
set { _EmailId = value; }
}
private string _EmailId = string.Empty;
[XmlElement("EmailId")]
public string XmlEmailId
{
get { return _EmailId; }
set { _EmailId = value; }
}
}

}

/*Constants.cs*/

using System;
using System.Collections.Generic;
using System.Text;
using System.Text.RegularExpressions;

namespace ReflectionExample
{
class Constants
{
internal const string EmailError = "Email Id is not valid!!";
internal const string Error1 = "Error";
internal const string PercentageError = "Percentage must be less than 100!!";
internal const string PercentageRegularExpression=@"[^0-9]";
internal const string EmailIdRegularExpression = @"^[a-zA-Z0-9_\-\.]+@([\w-]+\.)+[\w-]+$";

}
}
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg
Email ThisBlogThis!Share to XShare to Facebook

Related Posts:

  • More Regular ExpressionsTo validate a URL with a regular expression :-(http://|ftp://)([\w-\.)(\.)([a-zA-Z]+)… Read More
  • C# TutorialsHello to all, My next thread is about C#,In my next thread i will divide the C# thread into chapters each chapter will contain all the details about C… Read More
  • Tech-Giant(Jargons.. for Professionals): How to take Screenshot of panel,control and save it in a JPG format ?Tech-Giant(Jargons.. for Professionals): How to take Screenshot of panel,control and save it in a JPG format ?… Read More
  • C# Tutorial (Chapter - 1) Introduction about C# and .Net framework(1 :- .Net Plateform)I :-.Net Plateform :-The Microsoft® .NET platform provides all of the tools and technologies thatyou need to build distributed Web applications. It ex… Read More
  • How to create a session manager in .Net ?To create a SessionManager to save User objects in memory. It would be HashMap of HaspMaps.It can be used as:SessionManager MySessionManager= New Sess… Read More
Newer Post Older Post Home

0 comments:

Post a Comment

About The Author

Unknown
View my complete profile

Total Pageviews

84975

Popular Posts

  • Clr - Common Language Runtime
    .Net framework provides a run time environment - CLR. Common language runtime takes the IL code from the compiler( language specific) and p...
  • Auto logout chrome extension for Gmail
    Hello Friends, In the last article we learned to create a sample chrome extension. Here we are going to create auto logout Gmail script as...
  • Predicate delegate in C#
    Hello Everyone, In the article we will talk about Predicate delegate. Predicate is also a delegate which encapsulate a method that takes...
  • .Net Framework overview
    Hello friends : Here i am writing my first article on .Net framework anyways....So the question is What is .Net Framework ? The .Net fram...
  • Nagarro Placement Papers..
    Ques.1 :- Seat Reservation prog for the theatre. Write a function for seat allocation for the movie tickets. Total no of seats available are...
  • Calling the Delegates using Invoke(), BeginInvoke() and DynamicInvoke() ?
    Hello Guys, So in the last article we talked about What is delegate and how can we create a delegate. In this article we will discuss w...
  • What does it mean by disconnected data access architecture of ADO.Net?
    ADO.Net introduces the concept of disconnected data architecture. In traditional data access components, you make a connection to the databa...
  • C code to Check the string has valid identifier or not in.
    #include #include #include char keyword[][10]={"auto","break","case","char","const","...
  • Delegates in C Sharp
    A Delegate is a type variable that holds the reference to a method. Delegates are similar to Pointer to functions in C and C++ When we...
  • Garbage Collection - Automatic memory management
    While thinking of this question few things are coming in my mind ~ How .Net reclaims objects and memory used by an application ? So the ans...

Blog Archive

  • ►  2016 (4)
    • ►  September (2)
      • ►  Sep 03 (2)
    • ►  August (1)
      • ►  Aug 28 (1)
    • ►  April (1)
      • ►  Apr 24 (1)
  • ►  2015 (12)
    • ►  September (10)
      • ►  Sep 30 (1)
      • ►  Sep 29 (1)
      • ►  Sep 28 (1)
      • ►  Sep 27 (2)
      • ►  Sep 26 (3)
      • ►  Sep 20 (1)
      • ►  Sep 19 (1)
    • ►  August (1)
      • ►  Aug 16 (1)
    • ►  March (1)
      • ►  Mar 31 (1)
  • ►  2013 (10)
    • ►  June (1)
      • ►  Jun 16 (1)
    • ►  April (1)
      • ►  Apr 21 (1)
    • ►  February (8)
      • ►  Feb 18 (3)
      • ►  Feb 17 (2)
      • ►  Feb 16 (2)
      • ►  Feb 15 (1)
  • ►  2012 (1)
    • ►  May (1)
      • ►  May 27 (1)
  • ►  2010 (22)
    • ►  October (14)
      • ►  Oct 21 (1)
      • ►  Oct 06 (12)
      • ►  Oct 04 (1)
    • ►  April (2)
      • ►  Apr 22 (1)
      • ►  Apr 16 (1)
    • ►  March (1)
      • ►  Mar 30 (1)
    • ►  January (5)
      • ►  Jan 08 (3)
      • ►  Jan 01 (2)
  • ▼  2009 (110)
    • ►  December (8)
      • ►  Dec 18 (2)
      • ►  Dec 05 (1)
      • ►  Dec 04 (5)
    • ►  November (1)
      • ►  Nov 27 (1)
    • ►  October (14)
      • ►  Oct 09 (4)
      • ►  Oct 07 (1)
      • ►  Oct 06 (3)
      • ►  Oct 05 (3)
      • ►  Oct 01 (3)
    • ►  September (17)
      • ►  Sep 30 (1)
      • ►  Sep 29 (1)
      • ►  Sep 28 (1)
      • ►  Sep 25 (1)
      • ►  Sep 24 (1)
      • ►  Sep 17 (2)
      • ►  Sep 15 (3)
      • ►  Sep 11 (2)
      • ►  Sep 09 (3)
      • ►  Sep 08 (2)
    • ►  August (31)
      • ►  Aug 31 (1)
      • ►  Aug 27 (3)
      • ►  Aug 26 (1)
      • ►  Aug 25 (2)
      • ►  Aug 24 (1)
      • ►  Aug 22 (2)
      • ►  Aug 21 (3)
      • ►  Aug 20 (2)
      • ►  Aug 19 (3)
      • ►  Aug 18 (1)
      • ►  Aug 16 (1)
      • ►  Aug 12 (2)
      • ►  Aug 11 (1)
      • ►  Aug 10 (3)
      • ►  Aug 07 (4)
      • ►  Aug 06 (1)
    • ►  July (24)
      • ►  Jul 25 (4)
      • ►  Jul 24 (20)
    • ▼  April (15)
      • ►  Apr 10 (3)
      • ►  Apr 07 (9)
      • ▼  Apr 06 (3)
        • How to: Read Image Metadata
        • How to store a record in xml file from a windows f...
        • Sudoku-Checker in ASP.Net using C#

Subscribe To

Posts
Atom
Posts
Comments
Atom
Comments
copyright @ TechGiant 2015. Powered by Blogger.

Disclaimer

This is my personal blog and i write articles on .Net, WPF, C#, OOPS, Threading and other .Net technologies. This is not related to any of my employer and organizations. This is the result of my personal interest.

Subscribe To

Posts
Atom
Posts
Comments
Atom
Comments

Followers

Copyright © 2025 A Developer Journey who codes for fun | Powered by Blogger
Design by Hardeep Asrani | Blogger Theme by NewBloggerThemes.com