This article guides you to serialize object to XML in C#. Below is a complete example to show writing the data…
The Entry point method of C# Winform application looks as below, [STAThread] static void Main() { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Application.Run(new Form1());…
This article explains the sample C# code with XPathNavigator to select an XML element from an XML file which is…
Enum with spaces C#: If you give a space in string value of Enum, it would generate a compilation error.…
This article is just to give you a brief idea about SetCompatibleTextRenderingDefault and what happens if we pass true instead of…
Custom controls are specialized controls in .NET derived from Control class. In this article, we explain the step by step process of…