javascript - How to deserialize multiple JSON objects in C#? -
i'm passing multiple json objects frontend c# backend - how can deserialize them c# classes can used later on in application? before go farther, tied using js formdata object, contenttype: false , , processdata: false , because need pass files via ajax call; unrelated question. here's code far: frontend - function called when submit button pressed submitdata: function () { var formcollection = this.appmodel.get('formcollection').models; var formdata = new formdata(); var formjson = []; $.each(formcollection, function (index, form) { var tempjson = {}; if (form) { tempjson['id'] = form.get('id'); tempjson['number'] = form.get('number'); tempjson['name'] = form.get('name'); tempjson['attachments'] = form.get('attachments'); formjson.push(tempjson); } }); console.log(json.stringify(formjson));...