XML for Extensible Markup Language is small This is a very widely used format for exchange of data, mainly because it is easy-to-read for both humans and machines. If you have written a website in HTML then XML will be very familiar to you, because it is basically a strict version of HTML. XML tags, attributes and values are made and something looks like this:
Example -
<users>
<user name="John Doe" age="42" />
<user name="Jane Doe" age="39" />
</users>
As you can see, for the data format, it is really easy to read, and because it is a broad standard, almost every programming language has functions or classes to use it. C # is definitely one of them, with a complete namespace, System.Xml name space, to deal with any aspect of XML. In the following chapters, we will examine the use of XML, to write and read them. read on
0 comments:
Post a Comment