コード例 #1
0
ファイル: PlaybackSurface.cs プロジェクト: CarverLab/Oyster
		public bool AddIfNotExists(string ControlName, ref PlaybackCtrl value)
		{
			if (this.Contains(ControlName))
				return false;
			this.Add(ControlName, ref value);
			return true;
		}
コード例 #2
0
ファイル: PlaybackSurface.cs プロジェクト: CarverLab/Oyster
		public void Add(string ControlName, ref PlaybackCtrl value)  
		{
			this.BaseAdd(ControlName,value);
		}