using System; using System.Runtime.InteropServices; using Cpp2IlInjected; namespace System.Threading { /// Notifies one or more waiting threads that an event has occurred. This class cannot be inherited. // Token: 0x0200033C RID: 828 [Token(Token = "0x200033C")] [ComVisible(true)] public sealed class ManualResetEvent : EventWaitHandle { /// Initializes a new instance of the class with a Boolean value indicating whether to set the initial state to signaled. /// /// to set the initial state signaled; to set the initial state to nonsignaled. // Token: 0x06001F52 RID: 8018 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6001F52")] [Address(RVA = "0xF2E8D0", Offset = "0xF2D8D0", VA = "0x180F2E8D0")] public ManualResetEvent(bool initialState) { } } }