Files
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

23 lines
892 B
C#

using System;
using Cpp2IlInjected;
namespace System.Diagnostics
{
/// <summary>Provides a multilevel switch to control tracing and debug output without recompiling your code.</summary>
// Token: 0x020000C2 RID: 194
[Token(Token = "0x20000C2")]
[SwitchLevel(typeof(TraceLevel))]
public class TraceSwitch : Switch
{
/// <summary>Initializes a new instance of the <see cref="T:System.Diagnostics.TraceSwitch" /> class, using 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: 0x060004A2 RID: 1186 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60004A2")]
[Address(RVA = "0x2F4A4D0", Offset = "0x2F494D0", VA = "0x182F4A4D0")]
public TraceSwitch(string displayName, string description)
{
}
}
}