Newer
Older
DNA / corlib / System.Threading / WaitHandle.cs
@Chris Bacon Chris Bacon on 21 Jan 2012 175 bytes First commit
#if !LOCALTEST

using System;

namespace System.Threading {
	public abstract class WaitHandle : MarshalByRefObject, IDisposable {

		public void Dispose() {
		}

	}
}

#endif