在我的c#动作方法
中public void ProcessArray(string jsonArray){
//code here
}
jsonArray
参数以下列格式接收字符串对象:
[{\"studentid\":6968,\"enrolled\":false},{\"studentid\":6970,\"enrolled\":true},{\"studentid\":6972,\"enrolled\":false} ]
但是我如何将上面的json字符串数组转换为C#对象数组?
更新 这是动作方法的完整签名:
pubic json ProcessData(int id, int deptid, int teachId, string studentEnrollmentsArr, string userNotes){
}
我不想将所有上述参数都放到我希望将它们作为参数传递给模型的模型中。
感谢