natix.CompactDS.WTM.Save C# (CSharp) 메소드

Save() 공개 메소드

public Save ( BinaryWriter Output ) : void
Output System.IO.BinaryWriter
리턴 void
        public void Save(BinaryWriter Output)
        {
            Output.Write ((int)this.Alphabet.Length);
            SymbolCoderGenericIO.Save(Output, this.SymbolCoder);
            // Console.WriteLine ("Output.Position: {0}", Output.BaseStream.Position);
            this.SaveNode (Output, this.Root);
        }