Quantcast
Channel: Convert a hex string to base64 - Stack Overflow
Viewing all articles
Browse latest Browse all 4

Answer by Meysam Ghorbani for Convert a hex string to base64

$
0
0
public string HexToBase64(string strInput){    try    {        var bytes = new byte[strInput.Length / 2];        for (var i = 0; i < bytes.Length; i++)        {            bytes[i] = Convert.ToByte(strInput.Substring(i * 2, 2), 16);        }        return Convert.ToBase64String(bytes);    }    catch (Exception)    {        return "-1";    }}

On the contrary: https://stackoverflow.com/a/61224900/3988122


Viewing all articles
Browse latest Browse all 4

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>