文字列があり、列挙型から値を取得して、文字列と同じ名前で返したいと考えています。例:
enum Types{
one,
two,
three
}
private Types getType(string value){ //Let's say value is "two"
return Types.value; //This should return the enum "two" of Types
}
私はそれを十分に明確にしたことを願っています!