Как получить идентификаторы неиспользуемых перечислений?
if i have an enum enum days { sun mon tue wed thu fri sat } and i have a list of days called D that contains sun,mon,tue,wed i want to return the enum ids that are not used, so i need the ids of thu,fri and sat
Что я уже пробовал:
i was able to get the names itself but i couldn't get the ids <pre> List<string> Days = Enum.GetNames(typeof(WeekDay)).ToList(); var closed = Days.Except(D); // D is the list of days i mentioned above
так что теперь у меня есть чт,пт и СБ, но мне нужны идентификаторы, так чем же я могу заменить Enum.getNames?