CCNet.Build.Common.ArgumentProperties.GetValue C# (CSharp) Method

GetValue() public method

Gets configuration value by specified key. Returns null if value does not exist.
public GetValue ( string key ) : string
key string
return string
		public string GetValue(string key)
		{
			if (!Contains(key))
				return null;

			return m_values[key];
		}