Data Types C#

using System;
  public sealed class Strings
  {
    public static string FromByteArray(byte[] bs)
    {
      char[] cs = new char[bs.Length];
      for (int i = 0; i < cs.Length; ++i)
      {
        cs[i] = Convert.ToChar(bs[i]);
      }
      return new string(cs);
    }
  }