Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ IsWhitespace()

static bool System.Security.Cryptography.FromBase64Transform.IsWhitespace ( byte value)
inlinestaticprivate

Definition at line 119 of file FromBase64Transform.cs.

120 {
121 if (value != 32)
122 {
123 return (uint)(value - 9) <= 4u;
124 }
125 return true;
126 }

References System.value.

Referenced by System.Security.Cryptography.FromBase64Transform.DiscardWhiteSpaces().