AlphaTab.Platform.Std.IsWhiteSpace C# (CSharp) Method

IsWhiteSpace() public static method

public static IsWhiteSpace ( int c ) : bool
c int
return bool
        public static bool IsWhiteSpace(int c)
        {
            return c == 0x20 || c == 0x0B || c == 0x0D || c == 0x0A;
        }