Tag Archives: xml

C# Example: XML Property File

Environment * Visual Studio 2013 XML Property File * Add a new XML property file in the Properties directory: <?xml version="1.0" encoding="utf-8"?> <Settings> <add key="prop1" value="value1" /> <add key="prop2" value="value2" /> </Settings> MyProperties Class public class MyProperties { private static … Continue reading

Posted in c# | Tagged , , | Leave a comment