| 1234567891011121314151617181920 |
- //
- // System.Threading.AutoResetEvent.cs
- //
- // Author:
- // Dick Porter ([email protected])
- //
- // (C) Ximian, Inc. http://www.ximian.com
- //
- namespace System.Threading
- {
- public sealed class AutoResetEvent : WaitHandle
- {
- [MonoTODO]
- public AutoResetEvent(bool initialState) {
- // FIXME
- }
- }
- }
|