📜  windows 窗体将列表框链接到数组 - 任何代码示例

📅  最后修改于: 2022-03-11 14:58:45.203000             🧑  作者: Mango

代码示例3
public class MyClass
{
    public int Id { get; set; }
    public string Text { get; set; }
    public MyClass(int id, string text)
    {
        this.Id = id;
        this.Text = text;
    }
}