CCNet.Build.Common.ArgumentProperties.GetValue C# (CSharp) 메소드

GetValue() 공개 메소드

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

			return m_values[key];
		}