Here's my situation.
I have a library that has a set of enums that I need to use.
public enum showtype
{
comedy = 1001, horror = 1002, mystery = 1003, action = 1004;
}
This library is being referenced by another library that I created. My library is referenced by more than one console based app.
I need to assign the show type directly from the console based app.