Files
27Aug2021-Cpp2IL-Dump/System/CodeDom/Compiler/GeneratedCodeAttribute.cs
T
niko c12fbe3fc6 m
2026-04-12 16:51:38 +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: 0x020001F3 RID: 499
[Token(Token = "0x20001F3")]
[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: 0x06000D09 RID: 3337 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000D09")]
[Address(RVA = "0x4714F0", Offset = "0x4704F0", VA = "0x1804714F0")]
public GeneratedCodeAttribute(string tool, string version)
{
}
// Token: 0x04000701 RID: 1793
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x4000701")]
private readonly string tool;
// Token: 0x04000702 RID: 1794
[FieldOffset(Offset = "0x18")]
[Token(Token = "0x4000702")]
private readonly string version;
}
}