Nexus.Client.Games.Steam.KeyValue.KeyValue C# (CSharp) Method

KeyValue() public method

Initializes a new instance of the KeyValue class.
public KeyValue ( string name, string value ) : System
name string The optional name of the root key.
value string The optional value assigned to the root key
return System
		public KeyValue(string name, string value)
		{
			Name = name;
			Value = value;

			Children = new List<KeyValue>();
		}