vb.net 2008 这种情况下combobox能否不用Datatable绑定数组?
structure a
dim name as string
dim yy as string
end structure
dim aa() as a=new a(){new a with {.name="张三",.yy="一块钱"} _
{new a with {.name="李四",.yy="十块钱"}}
combobox1.datasource=aa
combobox1.displaymember="name"
combobox1.valuemember="yy"