コード例 #1
0
ファイル: JsonObject.cs プロジェクト: HerrLoesch/JsonBuilder
        public JsonCollection WithCollection(string collectionName)
        {
            var collection = new JsonCollection(collectionName);

            this.values.Add(collection);

            return collection;
        }
コード例 #2
0
        public JsonCollection WithCollection(string collectionName)
        {
            var collection = new JsonCollection(collectionName);

            this.values.Add(collection);

            return(collection);
        }
コード例 #3
0
        public JsonCollection WithCollection(string elementName)
        {
            var jsonCollection = new JsonCollection(elementName);

            this.objects.Add(jsonCollection);

            return(jsonCollection);
        }
コード例 #4
0
ファイル: JsonBuilder.cs プロジェクト: HerrLoesch/JsonBuilder
        public JsonCollection WithCollection(string elementName)
        {
            var jsonCollection = new JsonCollection(elementName);
            this.objects.Add(jsonCollection);

            return jsonCollection;
        }