Returns a new Map build from the file given
Declaration Syntax
C# |
public Parser( string fileName )
Parameters
- fileName (String)
- .sofu file to read from
Remarks
This ONLY parses normal Sofu Files, not binary ones and no SofuML, use SofuReader.LoadFile(file) for autodetection
Examples
CopyC#
Sofu.Sofu.Parser p = new Sofu.Sofu.Parser("file.sofu"); Sofu.Sofu.Map m = p.AsMap(); m.Write("file2.sofu");