Writes this SofuObject and all its children into a binary sofu file

C# |
public void WriteBinary( Stream output )

- output (Stream)
- Stream to write into


Sofu.Sofu.Map map = new Sofu.Sofu.Map(); map.SetAttribute("Hello",new Sofu.Sofu.Value("World"); MemoryStream ms = new MemoryStream(); map.Write(ms);