Code development platform for open source projects from the European Union institutions

Skip to content
Snippets Groups Projects
Commit 72972fa2 authored by Harald MARTINI's avatar Harald MARTINI
Browse files

Added GetValuesAsObservableCollection method to EnumHelper

parent 0fccaa89
No related branches found
Tags Release/v3.3.8.2052
No related merge requests found
......@@ -46,6 +46,13 @@ namespace VECTO3GUI2020.Helper
return GetValuesAsObservableCollection<T, TInput>(true, items);
}
public static ObservableCollection<T> GetValuesAsObservableCollection<T, TInput>()
where TInput : System.Enum
where T : System.Enum
{
return new ObservableCollection<T>(Enum.GetValues(typeof(TInput)).Cast<TInput>().ToList().Cast<T>());
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment