示例#1
0
		public bool AddIfNotExists(string ControlName, ref PlaybackCtrl value)
		{
			if (this.Contains(ControlName))
				return false;
			this.Add(ControlName, ref value);
			return true;
		}
示例#2
0
		public void Add(string ControlName, ref PlaybackCtrl value)  
		{
			this.BaseAdd(ControlName,value);
		}