예제 #1
0
파일: Timer.cs 프로젝트: duarten/mono
		public bool Dispose (WaitHandle notifyObject)
		{
			if (notifyObject == null)
				throw new ArgumentNullException ("notifyObject");
			Dispose ();
			notifyObject.Signal ();
			return true;
		}