Reads data from a Strem an puts it into a SofuObject tree.

- input (Stream)
- Stream to read from

A Sofu.Map containing the read data

Load a file from a MemoryStream and write it to "text.sofu"

MemoryStream m = new MemorySteram(somebytearray); Sofu.Sofu.Map file = SofuReader.LoadFile(ms); file.Write("text.sofu");//Write it out.