Beispiel #1
0
 public static ListTreeNode <TomlValue> ParseAsToml(this byte[] bytes)
 {
     return(TomlParser.Parse(new Utf8String(bytes)));
 }
Beispiel #2
0
 public static ListTreeNode <TomlValue> ParseAsToml(this ArraySegment <byte> bytes)
 {
     return(TomlParser.Parse(new Utf8String(bytes)));
 }
Beispiel #3
0
 public static ListTreeNode <TomlValue> ParseAsToml(this Utf8String toml)
 {
     return(TomlParser.Parse(toml));
 }