I have an enum like this:
public static class ExampleClass {
public enum ExampleEnum {
None,
Example0,
Example1
}
}
and i only got string of type and value. like:
const string Type = "ExampleClass.ExampleEnum";
const string Value = "Example0";
and i don't have the "Type" of enum, so i can't use like typeof(ExampleClass.ExampleEnum).
in this case, can i check if enum "ExampleClass.ExampleEnum" exists, and then "ExampleClass.ExampleEnum" has "Example0"?
if above is possible, can i get an object or index of specific enum value?