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
+22
View File
@@ -0,0 +1,22 @@
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)
{
}
}
}