Good day!
How can I access this part of XML and print the element name?
Please refer to the image below.

I’m now not able to progress with the following codes:
XmlDataDocument xmldoc = new XmlDataDocument();
XmlNode xmlnode;
FileStream fs = new FileStream(@"D:\Files\20120604\Data_120604-062516_003.xml", FileMode.Open, FileAccess.Read);
xmldoc.Load(fs);
//MessageBox.Show("YUMDMMATMAS05");
If the behavior you want is to get the root node, then you can get it with
xmldoc.DocumentElement.You can get the name of any XMLElement using the Name property.