예제 #1
0
파일: Program.cs 프로젝트: fantaros/halfman
 public static void Main(string[] args)
 {
     byte[] buffer = new byte[]{ 0,1,1,2,2,2,2,3,3,3,3,3,3,3,3};
     HalfManEncoder en = new HalfManEncoder (buffer);
     en.encoding ();
     //Console.ReadKey ();
 }
예제 #2
0
파일: HalfMan.cs 프로젝트: fantaros/halfman
 public byte[] encoding(byte[] filebytes)
 {
     encoder = new HalfManEncoder (filebytes);
     return null;
 }