チェックボックスリストを作成しています:
<asp:CheckBoxList ID="CheckBoxes" DataTextField="Value" DataValueField="Key" runat="server"></asp:CheckBoxList>
そして、選択したアイテムの値を取得しようとしています。
List<Guid> things = new List<Guid>();
foreach (ListItem item in this.CheckBoxes.Items)
{
if (item.Selected)
things.Add(item.Value);
}
}
私はエラーを取得します
「'System.Collections.Generic.List.Add(System.Guid)'に最適なオーバーロードされたメソッドの一致には、いくつかの無効な引数があります "