Skip to content

Instantly share code, notes, and snippets.

@se5a
Created February 8, 2016 06:21
Show Gist options
  • Save se5a/e2530344e5d3cbb61539 to your computer and use it in GitHub Desktop.
Save se5a/e2530344e5d3cbb61539 to your computer and use it in GitHub Desktop.
eto SelectedValue
protected void AddModButton_Click(object sender, EventArgs e)
{
//var item = AvailableModList.SelectedValue;
if (AvailableModList.SelectedValue != null)
{
new_game_options.AvailableModList.RemoveAt(AvailableModList.SelectedIndex);
new_game_options.SelectedModList.Add((DataVersionInfo)AvailableModList.SelectedValue);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment