MsgPack と Json を共用にするための Generics ListTreeNode を 単純な型 JsonNode で置き換え

This commit is contained in:
ousttrue
2021-02-09 15:15:38 +09:00
parent 8c8f39059a
commit c2ffda92dc
38 changed files with 346 additions and 495 deletions

View File

@@ -9,7 +9,7 @@ namespace VRM.Samples
{
public static class JsonExtensions
{
public static void SetValue<T>(this ListTreeNode<JsonValue> node, string key, T value)
public static void SetValue<T>(this JsonNode node, string key, T value)
{
var f = new JsonFormatter();
f.Serialize(value);