我的目标是在 dataGridView.DataSrouce 中使用两个单独的数组,一个字符串数组和一个 int 数组,但我不知道如何,或者是否可以这样做。
// this is what i have now
dataGridView.DataSource = playerName.Select(x =>
new { PlayerName = x }).ToList();
//this is what im looking to do, if it makes any sense
dataGridView.DataSource = playerName.Select(k =>
new { PlayerName = k, plrRoll = playerRoll.Select(x =>
new { roll = x }) }).ToList();
目前它只在 plrRoll 列中打印空行
是否可以将用户生成的滚动和用户生成的名称放在一起并显示在 dataGridView 中?