oh dear
This commit is contained in:
@@ -0,0 +1,62 @@
|
||||
using System;
|
||||
using System.Runtime.InteropServices;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Diagnostics
|
||||
{
|
||||
/// <summary>Determines how a class or field is displayed in the debugger variable windows.</summary>
|
||||
// Token: 0x02000620 RID: 1568
|
||||
[Token(Token = "0x2000620")]
|
||||
[AttributeUsage(AttributeTargets.Assembly | AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Enum | AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Delegate)]
|
||||
[ComVisible(true)]
|
||||
public sealed class DebuggerDisplayAttribute : Attribute
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Diagnostics.DebuggerDisplayAttribute" /> class.</summary>
|
||||
/// <param name="value">The string to be displayed in the value column for instances of the type; an empty string ("") causes the value column to be hidden.</param>
|
||||
// Token: 0x06002F68 RID: 12136 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6002F68")]
|
||||
[Address(RVA = "0x1B65630", Offset = "0x1B64430", VA = "0x181B65630")]
|
||||
public DebuggerDisplayAttribute(string value)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets the name to display in the debugger variable windows.</summary>
|
||||
/// <returns>The name to display in the debugger variable windows.</returns>
|
||||
// Token: 0x17000767 RID: 1895
|
||||
// (set) Token: 0x06002F69 RID: 12137
|
||||
[Token(Token = "0x17000767")]
|
||||
public extern string Name
|
||||
{
|
||||
[Token(Token = "0x6002F69")]
|
||||
[Address(RVA = "0x3F7200", Offset = "0x3F6000", VA = "0x1803F7200")]
|
||||
set;
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets the string to display in the type column of the debugger variable windows.</summary>
|
||||
/// <returns>The string to display in the type column of the debugger variable windows.</returns>
|
||||
// Token: 0x17000768 RID: 1896
|
||||
// (set) Token: 0x06002F6A RID: 12138
|
||||
[Token(Token = "0x17000768")]
|
||||
public extern string Type
|
||||
{
|
||||
[Token(Token = "0x6002F6A")]
|
||||
[Address(RVA = "0x460F90", Offset = "0x45FD90", VA = "0x180460F90")]
|
||||
set;
|
||||
}
|
||||
|
||||
// Token: 0x04001A65 RID: 6757
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0x10")]
|
||||
[Token(Token = "0x4001A65")]
|
||||
private string name;
|
||||
|
||||
// Token: 0x04001A66 RID: 6758
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0x18")]
|
||||
[Token(Token = "0x4001A66")]
|
||||
private string value;
|
||||
|
||||
// Token: 0x04001A67 RID: 6759
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0x20")]
|
||||
[Token(Token = "0x4001A67")]
|
||||
private string type;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user