Hi,
If I have an xml file like this:
<?xml version="1.0" ?>
<CATALOG>
<TITLE>Title1/TITLE>
<COUNTRY>USA</COUNTRY>
</CaTALOG>
</xml>
can I call Catalog tag like a class name from intellisense when I edit c# application ? and his child Title1 and USA ?
Example with intellisense VS 2008 c# :
1) System.DateTime.Now;
2) and in my case: Catalog Catalog.Title1 Catalog.USA
and the MOST important thing is: I don't need to have any assembly references or no implemented classes. I must to solve this task only with xml files without dlls or classes. It's possible? and how?
Thanks!