22 lines
738 B
C#
22 lines
738 B
C#
using System;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Diagnostics
|
|
{
|
|
/// <summary>Provides a set of methods and properties that help debug your code.</summary>
|
|
// Token: 0x020000BF RID: 191
|
|
[Token(Token = "0x20000BF")]
|
|
public static class Debug
|
|
{
|
|
/// <summary>Writes a message followed by a line terminator to the trace listeners in the <see cref="P:System.Diagnostics.Debug.Listeners" /> collection.</summary>
|
|
/// <param name="message">A message to write.</param>
|
|
// Token: 0x0600048A RID: 1162 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x600048A")]
|
|
[Address(RVA = "0x289F290", Offset = "0x289E090", VA = "0x18289F290")]
|
|
[Conditional("DEBUG")]
|
|
public static void WriteLine(string message)
|
|
{
|
|
}
|
|
}
|
|
}
|