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