Search
 
SCRIPT & CODE EXAMPLE
 

CSHARP

c# iterate xml

Dictionary<string, string> infos = new Dictionary<string, string>();
XmlDocument doc = new XmlDocument();
doc.Load(xmlDir);

foreach (XmlNode node in doc.DocumentElement.ChildNodes)
{
	infos.Add(node.Name, node.InnerText);
}
Comment

PREVIOUS NEXT
Code Example
Csharp :: c# extension method example 
Csharp :: windows forms change double buffer during runtime 
Csharp :: how to change the color of a single line of code in c# 
Csharp :: how to make a beep in c# 
Csharp :: unity repeat coroutine 
Csharp :: Get single listView SelectedItem 
Csharp :: c# multipthreading 
Csharp :: asp net mvc convert ienumerable to selectlistitem 
Csharp :: sortdescriptions wpf 
Csharp :: cannot convert from group method to threadstart C# 
Csharp :: c# ushort 
Csharp :: drop column with code first asp.net core 
Csharp :: c# toggle 
Csharp :: c# skip debug attribute 
Csharp :: c# set two dimensional array 
Csharp :: how to get text color alpha unity 
Csharp :: mpeg get video size 
Csharp :: get path c# application 
Csharp :: convert a string to an integer without using library 
Csharp :: switch rows and columns in a datagridview 
Csharp :: lambda not null c# 
Csharp :: c# how to return 2 strings 
Csharp :: c# read file while writing 
Csharp :: c# silent execute exe 
Csharp :: get path revit link unloaded 
Csharp :: query into complex object using dapper 
Csharp :: read barcode with barcode scanner c# winform serial port number 
Csharp :: unity download image from online 
Csharp :: c# string with double quotes inside 
Csharp :: can you use unity for ftee 
ADD CONTENT
Topic
Content
Source link
Name
2+4 =