0

我在下面发布了我的课程并附有示例数据。我需要将此类作为 json 响应传递。

[Serializable]
public class Student
{
    public string Fname {get;set;}
    public string FirstSemMarkcsv {get;set;}  //This should hold marks as comma separated values.
    public string SecondSemMarkcsv {get;set;}  //This should hold marks as comma separated values.
}

样本数据

Fname     FirstSemMark       SecondSemMark
John               95                  90
John               80                  93
John               70                  80
Peter              60                  78
Peter              80                  80
Peter              90                  85

我需要将此作为 json 响应传递。

请有任何想法。

问候,

阿什什

4

1 回答 1

2
List<Student> students = GetStudentList();
return Json(students));
于 2012-04-11T13:22:07.470 回答