I am building a checkbox lists:
<asp:CheckBoxList ID="CheckBoxes" DataTextField="Value" DataValueField="Key" runat="server"></asp:CheckBoxList>
And trying to get the value's of the selected items:
List<Guid> things = new List<Guid>();
foreach (ListItem item in this.CheckBoxes.Items)
{
if (item.Selected)
things.Add(item.Value);
}
}
I get the errror
"The best overloaded method match for 'System.Collections.Generic.List.Add(System.Guid)' has some invalid arguments "