Skip to main content

Posts

Showing posts with the label Convert Byte array to String

Convert Byte array to String

Convert Byte array to String public enum EncodingTypes     {         ASCII,         Unicode,         UTF7,         UTF8     }     public string ByteArraytoStringarray(byte[] imgbyte, EncodingTypes encodetype)     {         System.Text.Encoding encoding = null;         switch (encodetype)         {             case EncodingTypes.ASCII:                 encoding = new System.Text.ASCIIEncoding();                 break;             c...