XML Schema Basics(XSD)
Introduction This post gives a basic overview of XML Schema and how to use in development. XML schema describes what XML document contains and content of the XML document what fields and sub elements...
View ArticleValidating XML Document Using XSD in C#.NET
Introduction This post explains how to apply XML Schema Definition Language(XSD) to Extensible Markup Language (XML) document. Basics of XSD. Create an XML Document Start Visual Studio .NET Create a...
View ArticleJSON vs XML
Introduction This post explains the JSON Advantages over XML. JSON is more compact. Consider the following XML data The above example contains three employees information where <empinfo> and...
View ArticleDocumenting C# code with XML Comments
This article explains an easy and effective way of documenting your C# code. XML comments are the solution for generating a clean documentation for your code. Visual Studio environment allows you to...
View Article