Im在C#(窗口表格)和Server实施一个方案,在这两个栏中,我需要把“Q”阵列放在一个阵列。 我稍后将使用这一阵列,以便对某些文本Boxes进行自动填写。 规则是:
- The array should be able to hold whatever the amount of strings I have in the columns, this amount may exceed 500 strings and is variable.
- I will need the distinct values from the columns, no duplicates.
我认为,我应该利用“联合国”把两栏和SqlDataReader的所有座标同一个“同时”的周期混为一谈,把座标放在阵列中。
这里是一个例子表,用它向我解释:
----------------------------
| name | surname |
----------------------------
| John | Jackson |
----------------------------
| Michael | Jones |
----------------------------
| Amanda | Lopez |
----------------------------
| Christina | Lopez |
----------------------------
因此,问询会如何看待,我如何把结果纳入一个阵列?