Files
Aug2021-Cpp2IL-Dump/System/CodeDom/Compiler/GeneratedCodeAttribute.cs
T
2026-04-10 22:50:51 +02:00

33 lines
1.2 KiB
C#

using System;
using Cpp2IlInjected;
namespace System.CodeDom.Compiler
{
/// <summary>Identifies code generated by a tool. This class cannot be inherited.</summary>
// Token: 0x020001F7 RID: 503
[Token(Token = "0x20001F7")]
[AttributeUsage(AttributeTargets.All)]
public sealed class GeneratedCodeAttribute : Attribute
{
/// <summary>Initializes a new instance of the <see cref="T:System.CodeDom.Compiler.GeneratedCodeAttribute" /> class specifying the name and version of the tool that generated the code.</summary>
/// <param name="tool">The name of the tool that generated the code.</param>
/// <param name="version">The version of the tool that generated the code.</param>
// Token: 0x06000D1F RID: 3359 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000D1F")]
[Address(RVA = "0x497CA0", Offset = "0x496AA0", VA = "0x180497CA0")]
public GeneratedCodeAttribute(string tool, string version)
{
}
// Token: 0x0400070E RID: 1806
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x400070E")]
private readonly string tool;
// Token: 0x0400070F RID: 1807
[FieldOffset(Offset = "0x18")]
[Token(Token = "0x400070F")]
private readonly string version;
}
}