Convert a byte array to string using default encoding

image_pdfimage_print
   
 


//http://tinyerp.codeplex.com/
//GNU Library General Public License (LGPL)
//-----------------------------------------------------------------------
// <copyright file="SysUtil.cs" company="Pyramid Consulting">
//     Copyright (c) Pyramid Consulting. All rights reserved.
// </copyright>
//-----------------------------------------------------------------------
using System;
using System.Collections.Generic;
using System.Text;

namespace Bamboo.Core.Common
{
    public class SysUtil
    {
        /// <summary>
        /// convert a byte array to string using default encoding
        /// </summary>
        /// <param name="bData">the content of the array</param>
        /// <returns>converted string</returns>
        public static String BytesToString(byte[] bData)
        {
            return System.Text.Encoding.GetEncoding(0).GetString(bData);
        }
    }
}

   
     


This entry was posted in File Stream. Bookmark the permalink.