natix.CompactDS.WaveletTree.Save C# (CSharp) Method

Save() public method

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