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

Add() 공개 메소드

Adds a new property.
public Add ( string key, string value ) : void
key string
value string
리턴 void
		public void Add(string key, string value)
		{
			if (String.IsNullOrWhiteSpace(key))
				throw new ArgumentNullException("key");

			m_values[key] = value;
		}