why cannot i initialise a dictionary with values from enum. for example
enum cust {
OneTime
}
dictionary<int, string> custs = new dictionary<int, string>() {
{cust.OneTime, "some string values"}
}
getting argument is not assignable to type int error
any thoughts?