Pihrtsoft.Text.RegularExpressions.Linq.PatternBuilder.AppendWhiteSpace C# (CSharp) Method

AppendWhiteSpace() public method

Appends a pattern that matches a white-space character.
public AppendWhiteSpace ( ) : void
return void
        public void AppendWhiteSpace()
        {
            AppendBackslash('s');

            if (_fBuilder && _charGroupLevel == 0)
                _builder.AddInfo(SyntaxKind.WhiteSpace);
        }