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

Contains() public method

Checks whether specified property exists.
public Contains ( string key ) : bool
key string
return bool
		public bool Contains(string key)
		{
			return m_values.ContainsKey(key);
		}