using System;
namespace System.CodeDom.Compiler
{
/// Identifies code generated by a tool. This class cannot be inherited.
// Token: 0x0200000A RID: 10
[AttributeUsage(AttributeTargets.All, Inherited = false, AllowMultiple = false)]
public sealed class GeneratedCodeAttribute : Attribute
{
/// Initializes a new instance of the class specifying the name and version of the tool that generated the code.
/// The name of the tool that generated the code.
/// The version of the tool that generated the code.
// Token: 0x0600000C RID: 12 RVA: 0x00002160 File Offset: 0x00000360
public GeneratedCodeAttribute(string tool, string version)
{
this.tool = tool;
this.version = version;
}
/// Gets the name of the tool that generated the code.
/// The name of the tool that generated to code.
// Token: 0x17000002 RID: 2
// (get) Token: 0x0600000D RID: 13 RVA: 0x00002178 File Offset: 0x00000378
public string Tool
{
get
{
return this.tool;
}
}
/// Gets the version of the tool that generated the code.
/// The version of the tool that generated the code.
// Token: 0x17000003 RID: 3
// (get) Token: 0x0600000E RID: 14 RVA: 0x00002180 File Offset: 0x00000380
public string Version
{
get
{
return this.version;
}
}
// Token: 0x0400001F RID: 31
private string tool;
// Token: 0x04000020 RID: 32
private string version;
}
}