BraintreeEncryption.Library.BouncyCastle.Util.Encoders.HexEncoder.ignore C# (CSharp) Method

ignore() private method

private ignore ( char c ) : bool
c char
return bool
        private bool ignore(
			char c)
        {
            return (c == '\n' || c =='\r' || c == '\t' || c == ' ');
        }