Files
niko c12fbe3fc6 m
2026-04-12 16:51:38 +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: 0x020000BA RID: 186
[Token(Token = "0x20000BA")]
[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: 0x06000473 RID: 1139 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000473")]
[Address(RVA = "0x2F38F80", Offset = "0x2F37F80", VA = "0x182F38F80")]
public BooleanSwitch(string displayName, string description)
{
}
}
}