Files
PURErat-crack-scode/decompiled/Libraries/microsoft.codeanalysis/System.Runtime.CompilerServices/InterpolatedStringHandlerArgumentAttribute.cs
T

18 lines
475 B
C#
Raw Normal View History

2026-08-27 10:56:38 -06:00
namespace System.Runtime.CompilerServices;
[AttributeUsage(AttributeTargets.Parameter, AllowMultiple = false, Inherited = false)]
internal sealed class InterpolatedStringHandlerArgumentAttribute : Attribute
{
public string[] Arguments { get; }
public InterpolatedStringHandlerArgumentAttribute(string argument)
{
Arguments = new string[1] { argument };
}
public InterpolatedStringHandlerArgumentAttribute(params string[] arguments)
{
Arguments = arguments;
}
}