File Stream C#

//http://tinyerp.codeplex.com/
//GNU Library General Public License (LGPL)
//-----------------------------------------------------------------------
// 
//     Copyright (c) Pyramid Consulting. All rights reserved.
// 
//-----------------------------------------------------------------------
using System;
using System.Collections.Generic;
using System.Text;
namespace Bamboo.Core.Common
{
    public class SysUtil
    {
        /// 
        /// convert a byte array to string using default encoding
        /// 

        /// the content of the array
        /// converted string
        public static String BytesToString(byte[] bData)
        {
            return System.Text.Encoding.GetEncoding(0).GetString(bData);
        }
    }
}