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