Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
InterpolatedStringHandlerArgumentAttribute.cs
Go to the documentation of this file.
1
namespace
System.Runtime.CompilerServices
;
2
3
[AttributeUsage(
AttributeTargets
.Parameter, AllowMultiple =
false
, Inherited =
false
)]
4
public
sealed
class
InterpolatedStringHandlerArgumentAttribute
:
Attribute
5
{
6
public
string
[]
Arguments
{
get
; }
7
8
public
InterpolatedStringHandlerArgumentAttribute
(
string
argument)
9
{
10
Arguments
=
new
string
[1] { argument };
11
}
12
13
public
InterpolatedStringHandlerArgumentAttribute
(params
string
[] arguments)
14
{
15
Arguments
= arguments;
16
}
17
}
System.Attribute
Definition
Attribute.cs:12
System.Runtime.CompilerServices.InterpolatedStringHandlerArgumentAttribute.InterpolatedStringHandlerArgumentAttribute
InterpolatedStringHandlerArgumentAttribute(params string[] arguments)
Definition
InterpolatedStringHandlerArgumentAttribute.cs:13
System.Runtime.CompilerServices.InterpolatedStringHandlerArgumentAttribute.InterpolatedStringHandlerArgumentAttribute
InterpolatedStringHandlerArgumentAttribute(string argument)
Definition
InterpolatedStringHandlerArgumentAttribute.cs:8
System.Runtime.CompilerServices.InterpolatedStringHandlerArgumentAttribute.Arguments
string[] Arguments
Definition
InterpolatedStringHandlerArgumentAttribute.cs:6
System.Runtime.CompilerServices.InterpolatedStringHandlerArgumentAttribute
Definition
InterpolatedStringHandlerArgumentAttribute.cs:5
System.Runtime.CompilerServices
Definition
NullablePublicOnlyAttribute.cs:3
System.AttributeTargets
AttributeTargets
Definition
AttributeTargets.cs:5
source
System.Private.CoreLib
System.Runtime.CompilerServices
InterpolatedStringHandlerArgumentAttribute.cs
Generated by
1.10.0