This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 additions and 0 deletions
@@ -0,0 +1,23 @@
using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System.Threading
{
/// <summary>Notifies one or more waiting threads that an event has occurred. This class cannot be inherited.</summary>
// Token: 0x0200033C RID: 828
[Token(Token = "0x200033C")]
[ComVisible(true)]
public sealed class ManualResetEvent : EventWaitHandle
{
/// <summary>Initializes a new instance of the <see cref="T:System.Threading.ManualResetEvent" /> class with a Boolean value indicating whether to set the initial state to signaled.</summary>
/// <param name="initialState">
/// <see langword="true" /> to set the initial state signaled; <see langword="false" /> to set the initial state to nonsignaled.</param>
// Token: 0x06001F52 RID: 8018 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001F52")]
[Address(RVA = "0xF2E8D0", Offset = "0xF2D8D0", VA = "0x180F2E8D0")]
public ManualResetEvent(bool initialState)
{
}
}
}