摘要:
namespace ConTest{ class DataSeries { public double[] Datas { get; set; } public DataSeries(int len) { this.Datas = new double[len]; } public DataSeries() { this.Datas = new double[0] { }; } }} 阅读全文
摘要:
using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace ConTest{ class Teacher { private Dictionary<string, Student> students = new Dictionary<string, Student>(); public Student this[string name] { get { return students[name]; } set { students[name] = 阅读全文