Skip to content

Instantly share code, notes, and snippets.

@gscattolin
Created September 10, 2013 18:08
Show Gist options
  • Save gscattolin/6513232 to your computer and use it in GitHub Desktop.
Save gscattolin/6513232 to your computer and use it in GitHub Desktop.
Enum Enumerator
//Fill a combobox with an enumerator
TypeofItems_cb.Items.Clear();
foreach (var it in Enum.GetValues(typeof(Recipe.ProductType)))
{
TypeofItems_cb.Items.Add(it.ToString());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment