G
Guest
Hi there,
I am just curious, is there any difference between these 2 techniques used
as below:
1.
FileStream fs = new FileStream(@"C:\hello.xml", FileMode.Open);
XmlTextReader xmlreader = new XmlTextReader(fs);
2.
XmlTextReader xmlreader = new XmlTextReader(@"C:\hello.xml");
Any help?
Cheers.
I am just curious, is there any difference between these 2 techniques used
as below:
1.
FileStream fs = new FileStream(@"C:\hello.xml", FileMode.Open);
XmlTextReader xmlreader = new XmlTextReader(fs);
2.
XmlTextReader xmlreader = new XmlTextReader(@"C:\hello.xml");
Any help?
Cheers.