public partial class Form1 : Form
{
Course[] csharp = new Course[5];
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
Test c1 = new Test("Quiz",
new DateTime(2012, 6, 6), 86);
Test c2 = new Test("Mid-Term",
new DateTime(2012, 5, 6), 90);
Test c3 = new Test("Final",
new DateTime(2012, 4, 6), 87);
Test c4 = new Test("Quiz",
new DateTime(2012, 3, 6), 100);
Test c5 = new Test("Quiz",
new DateTime(2012, 2, 6), 66);
}
}
如何將我的測試c5添加到我的對象數組csharp?我想爲三個對象添加五個測試類型。請幫助我在初學者水平。持有值的對象。我需要添加五個測試到我的對象
這是功課嗎? –
您不能將「Test」類型的對象添加到「Course」類型的數組中。 – Nailuj
我需要用五個測試來填充課程對象,同時使用具有三個字段的測試課程。 –