using System; using System.Diagnostics; namespace ScreenConnect; [AttributeUsage(AttributeTargets.Constructor | AttributeTargets.Method | AttributeTargets.Property | AttributeTargets.Delegate)] [Conditional("JETBRAINS_ANNOTATIONS")] public sealed class StringFormatMethodAttribute : Attribute { public string FormatParameterName { get; } public StringFormatMethodAttribute(string formatParameterName) { FormatParameterName = formatParameterName; } }