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

IsValidTailBytes() private method

private IsValidTailBytes ( int v3, int v4 ) : bool
v3 int
v4 int
return bool
        private bool IsValidTailBytes(int v3, int v4)
        {
            // If the third char is = then the fourth char must be =
            return !(v3 == 64 && v4 != 64);
        }