File Stream C#

/*
 * Copyright (c) United Binary LLC.  All rights reserved.
 * 
 * This code is licensed under the MIT License
 * 
 * SEE: http://harnessit.codeplex.com/license
 * 
 */
#region using ...
using System;
using System.Text;
#endregion
namespace UnitedBinary.Core.Utility.Text
{
  /// 
  public sealed class Format
  {
    private Format() {}
    /// 
    public static string BytesToFormattedString(string format, byte[] source)
    {
      StringBuilder sb = new StringBuilder();
      for (int i=0; i < source.Length; i++)
      {
        sb.AppendFormat(format, source[i]);
      }
      string text = sb.ToString();
      return text;
    }
  }
}