is there any C# method that works similar to Convert.ToBase64String but doesn\'t generate anything except alphanumeric output?
Thanks!
You can use BitConverter.ToString() which will give you a hex string. However the resulting strings will be longer than Base64 encoding.