コード例 #1
0
        public JsonCollection WithValue(object value)
        {
            var jsonValue = new JsonValue(value);
            this.Values.Add(jsonValue);

            return this;
        }
コード例 #2
0
ファイル: JsonObject.cs プロジェクト: HerrLoesch/JsonBuilder
        public JsonObject WithValue(string name, object value)
        {
            var jsonValue = new JsonValue(name, value);
            this.values.Add(jsonValue);

            return this;
        }