c#程式設計

WANG--倪發表於2024-06-18

結構體(可透過陣列進行管理):
第一步:定義
struct StudentInfo{
public int age;
public string name;
public int grade;
public int id;
public bool gender;
}
第二步:使用


例子:
定義:

使用:

委託關鍵字delegate

相關文章