Skip to content

Instantly share code, notes, and snippets.

@justinyoo
Created June 17, 2016 06:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save justinyoo/67ba1a777789029657bd38e1c6a177d8 to your computer and use it in GitHub Desktop.
Save justinyoo/67ba1a777789029657bd38e1c6a177d8 to your computer and use it in GitHub Desktop.
Configuration Value Converter for enum and List<T>
[Flags]
public enum ProductTypes
{
None = 0,
ProductA = 1 << 0,
ProductB = 1 << 1,
ProductC = 1 << 2,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment