| TypeName | SA1122UseStringEmptyForEmptyStrings |
| CheckId | SA1122 |
| Category | Readability Rules |
The C# code includes an empty string, written as "".
A violation of this rule occurs when the code contains an empty string. For example:
string s = "";This will cause the compiler to embed an empty string into the compiled code. Rather than including a hard-coded empty string, use the static string.Empty property:
string s = string.Empty;To fix a violation of this rule, replace the hard-coded empty string with string.Empty.
[SuppressMessage("StyleCop.CSharp.ReadabilityRules", "SA1122:UseStringEmptyForEmptyStrings", Justification = "Reviewed.")]#pragma warning disable SA1122 // UseStringEmptyForEmptyStrings
#pragma warning restore SA1122 // UseStringEmptyForEmptyStrings