System.Runtime.CompilerServices.InterpolatedStringHandlerArgumentAttribute
namespace System.Runtime.CompilerServices
{
internal sealed class InterpolatedStringHandlerArgumentAttribute : Attribute
{
public string[] Arguments { get; }
public InterpolatedStringHandlerArgumentAttribute(string argument);
public InterpolatedStringHandlerArgumentAttribute(params string[] arguments);
}
}