Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
GeneratedCodeAttribute.cs
Go to the documentation of this file.
1
namespace
System.CodeDom.Compiler
;
2
3
[AttributeUsage(
AttributeTargets
.All, Inherited =
false
, AllowMultiple =
false
)]
4
public
sealed
class
GeneratedCodeAttribute
:
Attribute
5
{
6
private
readonly
string
_tool
;
7
8
private
readonly
string
_version
;
9
10
public
string
?
Tool
=>
_tool
;
11
12
public
string
?
Version
=>
_version
;
13
14
public
GeneratedCodeAttribute
(
string
? tool,
string
? version)
15
{
16
_tool
= tool;
17
_version
= version;
18
}
19
}
System.Attribute
Definition
Attribute.cs:12
System.CodeDom.Compiler.GeneratedCodeAttribute.GeneratedCodeAttribute
GeneratedCodeAttribute(string? tool, string? version)
Definition
GeneratedCodeAttribute.cs:14
System.CodeDom.Compiler.GeneratedCodeAttribute._version
readonly string _version
Definition
GeneratedCodeAttribute.cs:8
System.CodeDom.Compiler.GeneratedCodeAttribute.Tool
string? Tool
Definition
GeneratedCodeAttribute.cs:10
System.CodeDom.Compiler.GeneratedCodeAttribute._tool
readonly string _tool
Definition
GeneratedCodeAttribute.cs:6
System.CodeDom.Compiler.GeneratedCodeAttribute
Definition
GeneratedCodeAttribute.cs:5
System.Version
Definition
Version.cs:10
System.CodeDom.Compiler
Definition
GeneratedCodeAttribute.cs:1
System.AttributeTargets
AttributeTargets
Definition
AttributeTargets.cs:5
source
System.Private.CoreLib
System.CodeDom.Compiler
GeneratedCodeAttribute.cs
Generated by
1.10.0