StringFormatMethodAttribute Class |
Indicates that the marked method builds string by format pattern and (optional) arguments.
Parameter, which contains format string, should be given in constructor. The format string
should be in
Format(IFormatProvider, String, Object)-like form
Inheritance Hierarchy Namespace: Ozeki.CommonAssembly: OzekiSDK (in OzekiSDK.dll) Version: 10.4.98
Syntaxpublic sealed class StringFormatMethodAttribute : Attribute
Public NotInheritable Class StringFormatMethodAttribute
Inherits Attribute
public ref class StringFormatMethodAttribute sealed : public Attribute
[<SealedAttribute>]
type StringFormatMethodAttribute =
class
inherit Attribute
endThe StringFormatMethodAttribute type exposes the following members.
Constructors
Properties
Example
[StringFormatMethod("message")]
public void ShowError(string message, params object[] args) { /* do something */ }
public void Foo() {
ShowError("Failed: {0}"); // Warning: Non-existing argument in format string
}
See Also