using System;
namespace System.Diagnostics
{
/// Provides a set of methods and properties that help debug your code. This class cannot be inherited.
/// 1
// Token: 0x020000E0 RID: 224
public sealed class Debug
{
// Token: 0x06000775 RID: 1909 RVA: 0x00013F70 File Offset: 0x00012170
private Debug()
{
}
/// Checks for a condition; if the condition is false, displays a message box that shows the call stack.
/// The conditional expression to evaluate. If the condition is true, a failure message is not sent and the message box is not displayed.
/// 1
///
///
///
///
// Token: 0x06000776 RID: 1910 RVA: 0x00013F78 File Offset: 0x00012178
[Conditional("DEBUG")]
public static void Assert(bool condition)
{
}
/// Checks for a condition; if the condition is false, outputs a specified message and displays a message box that shows the call stack.
/// The conditional expression to evaluate. If the condition is true, the specified message is not sent and the message box is not displayed.
/// The message to send to the collection.
/// 1
///
///
///
///
// Token: 0x06000777 RID: 1911 RVA: 0x00013F7C File Offset: 0x0001217C
[Conditional("DEBUG")]
public static void Assert(bool condition, string message)
{
}
/// Checks for a condition; if the condition is false, outputs two specified messages and displays a message box that shows the call stack.
/// The conditional expression to evaluate. If the condition is true, the specified messages are not sent and the message box is not displayed.
/// The message to send to the collection.
/// The detailed message to send to the collection.
/// 1
///
///
///
///
// Token: 0x06000778 RID: 1912 RVA: 0x00013F80 File Offset: 0x00012180
[Conditional("DEBUG")]
public static void Assert(bool condition, string message, string details)
{
}
// Token: 0x06000779 RID: 1913 RVA: 0x00013F84 File Offset: 0x00012184
[Conditional("DEBUG")]
public static void Assert(bool condition, string message, string details, object[] args)
{
}
/// Writes the value of the object's method to the trace listeners in the collection.
/// An object whose name is sent to the .
/// 2
///
///
///
///
// Token: 0x0600077A RID: 1914 RVA: 0x00013F88 File Offset: 0x00012188
[Conditional("DEBUG")]
public static void WriteLine(object obj)
{
Console.WriteLine(obj);
}
/// Writes a message followed by a line terminator to the trace listeners in the collection.
/// A message to write.
/// 2
///
///
///
///
// Token: 0x0600077B RID: 1915 RVA: 0x00013F90 File Offset: 0x00012190
[Conditional("DEBUG")]
public static void WriteLine(string message)
{
Console.WriteLine(message);
}
// Token: 0x0600077C RID: 1916 RVA: 0x00013F98 File Offset: 0x00012198
[Conditional("DEBUG")]
public static void WriteLine(string format, params object[] args)
{
Console.WriteLine(format, args);
}
}
}