Returns a new Map build from the file given

C# |
public Parser( string fileName )

- fileName (String)
- .sofu file to read from

This ONLY parses normal Sofu Files, not binary ones and no SofuML, use SofuReader.LoadFile(file) for autodetection


Sofu.Sofu.Parser p = new Sofu.Sofu.Parser("file.sofu"); Sofu.Sofu.Map m = p.AsMap(); m.Write("file2.sofu");