Files
27Aug2021-Cpp2IL-Dump/mscorlib/System/Diagnostics/DebuggerDisplayAttribute.cs
T
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

63 lines
2.4 KiB
C#

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: 0x02000641 RID: 1601
[Token(Token = "0x2000641")]
[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: 0x06003180 RID: 12672 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6003180")]
[Address(RVA = "0x254B890", Offset = "0x254A890", VA = "0x18254B890")]
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: 0x170007DF RID: 2015
// (set) Token: 0x06003181 RID: 12673
[Token(Token = "0x170007DF")]
public extern string Name
{
[Token(Token = "0x6003181")]
[Address(RVA = "0x415800", Offset = "0x414800", VA = "0x180415800")]
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: 0x170007E0 RID: 2016
// (set) Token: 0x06003182 RID: 12674
[Token(Token = "0x170007E0")]
public extern string Type
{
[Token(Token = "0x6003182")]
[Address(RVA = "0x415810", Offset = "0x414810", VA = "0x180415810")]
set;
}
// Token: 0x04001B28 RID: 6952
[global::Cpp2IlInjected.FieldOffset(Offset = "0x10")]
[Token(Token = "0x4001B28")]
private string name;
// Token: 0x04001B29 RID: 6953
[global::Cpp2IlInjected.FieldOffset(Offset = "0x18")]
[Token(Token = "0x4001B29")]
private string value;
// Token: 0x04001B2A RID: 6954
[global::Cpp2IlInjected.FieldOffset(Offset = "0x20")]
[Token(Token = "0x4001B2A")]
private string type;
}
}