I am trying to store a Enum class Type as value in Dictionary but i am getting 'Test' is a type, which is not valid in the given context. basically Test is Enum Class.
public enum Test
{
Test1 = 1,
Test2 = 2,
}
and Dictionary:-
private Dictionary<int, Type> _typeMapping;