日期:2014-05-17 浏览次数:20865 次
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Newtonsoft.Json; //用到的插件 详情百度之 大把的 我就不赘述了
namespace ConsoleApplication2
{
class Program
{
public class Info
{
public Info()
{
Students = new List<Student>(); //初始化学生集合 否则会报NullReferences错
}
public string Grade { get; set; }
public string Class { get; set; }
public List<Student> Students { get; set; }
}
//学生类
public class Student
{
public string Name { get; set; } //姓名
public int Number { get; set; } //学号
public int Physics { get; set; } //物理
public int Chemistry { get; set; } //化学
public int Biology { get; set; } //生物
}
static void Main(string[] args)
{
Info info = new Info();
&n