21 lines
718 B
C#
21 lines
718 B
C#
using System;
|
|
|
|
namespace JetBrains.Annotations
|
|
{
|
|
// Token: 0x02000434 RID: 1076
|
|
[AttributeUsage(AttributeTargets.Constructor | AttributeTargets.Method, AllowMultiple = false, Inherited = true)]
|
|
public sealed class StringFormatMethodAttribute : Attribute
|
|
{
|
|
// Token: 0x0600383E RID: 14398 RVA: 0x000609CC File Offset: 0x0005EBCC
|
|
public StringFormatMethodAttribute(string formatParameterName)
|
|
{
|
|
this.FormatParameterName = formatParameterName;
|
|
}
|
|
|
|
// Token: 0x17000CEB RID: 3307
|
|
// (get) Token: 0x0600383F RID: 14399 RVA: 0x000609DC File Offset: 0x0005EBDC
|
|
// (set) Token: 0x06003840 RID: 14400 RVA: 0x000609F8 File Offset: 0x0005EBF8
|
|
public string FormatParameterName { get; private set; }
|
|
}
|
|
}
|