Mavengers
Developer's Blog
Friday, May 1, 2015
asp.net convert byte to base64
public static string ByteToBase64(byte[] byteData)
{
if(byteData == null)
{
return "" ;
}
else
{
return Convert.ToBase64String(byteData);
}
}
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment