Files
Aug2021-Cpp2IL-Dump/System/Diagnostics/BooleanSwitch.cs
T
2026-04-10 22:50:51 +02:00

23 lines
870 B
C#

using System;
using Cpp2IlInjected;
namespace System.Diagnostics
{
/// <summary>Provides a simple on/off switch that controls debugging and tracing output.</summary>
// Token: 0x020000BE RID: 190
[Token(Token = "0x20000BE")]
[SwitchLevel(typeof(bool))]
public class BooleanSwitch : Switch
{
/// <summary>Initializes a new instance of the <see cref="T:System.Diagnostics.BooleanSwitch" /> class with the specified display name and description.</summary>
/// <param name="displayName">The name to display on a user interface.</param>
/// <param name="description">The description of the switch.</param>
// Token: 0x06000489 RID: 1161 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000489")]
[Address(RVA = "0x289E4C0", Offset = "0x289D2C0", VA = "0x18289E4C0")]
public BooleanSwitch(string displayName, string description)
{
}
}
}