Sofu Documentation
WriteBinary Method (output)
NamespacesSofu.SofuSofuObjectWriteBinary(Stream)
Writes this SofuObject and all its children into a binary sofu file
Declaration Syntax
C#
public void WriteBinary(
	Stream output
)
Parameters
output (Stream)
Stream to write into
Examples
CopyC#
Sofu.Sofu.Map map = new Sofu.Sofu.Map();
map.SetAttribute("Hello",new Sofu.Sofu.Value("World");
MemoryStream ms = new MemoryStream();
map.Write(ms);

Assembly: Sofu (Module: Sofu) Version: 0.2.1.0 (0.2.1.0)