TypeName | SA1006PreprocessorKeywordsMustNotBePrecededBySpace |
CheckId | SA1006 |
Category | Spacing Rules |
A C# preprocessor-type keyword is preceded by space.
A violation of this rule occurs when the preprocessor-type keyword in a preprocessor directive is preceded by space. For example:
# if Debug
There should not be any whitespace between the opening hash mark and the preprocessor-type keyword:
#if Debug
To fix a violation of this rule, ensure that there is no whitespace between the opening hash mark and the preprocessor-type keyword.
[SuppressMessage("StyleCop.CSharp.SpacingRules", "SA1006:PreprocessorKeywordsMustNotBePrecededBySpace", Justification = "Reviewed.")]
#pragma warning disable SA1006 // PreprocessorKeywordsMustNotBePrecededBySpace
#pragma warning restore SA1006 // PreprocessorKeywordsMustNotBePrecededBySpace