System.Runtime.CompilerServices.InterpolatedStringHandlerArgumentAttribute
Indicates which arguments to a method involving an interpolated string handler should be passed to that handler.
namespace System.Runtime.CompilerServices
{
internal sealed class InterpolatedStringHandlerArgumentAttribute : Attribute
{
public string[] Arguments { get; }
public InterpolatedStringHandlerArgumentAttribute(string argument);
public InterpolatedStringHandlerArgumentAttribute(params string[] arguments);
}
}