System.Text.Base64Encoding.IsValidLeadBytes C# (CSharp) Method

IsValidLeadBytes() private method

private IsValidLeadBytes ( int v1, int v2, int v3, int v4 ) : bool
v1 int
v2 int
v3 int
v4 int
return bool
        private bool IsValidLeadBytes(int v1, int v2, int v3, int v4)
        {
            // First two chars of a four char base64 sequence can't be ==, and must be valid
            return ((v1 | v2) < 64) && ((v3 | v4) != 0xFF);
        }