Aşağıda dizeye göre enum değerini almak için C # yöntemi verilmiştir
public T GetEnumValue<T>(string str) where T : struct, IConvertible
{
if (!typeof(T).IsEnum)
{
throw new Exception("T must be an Enumeration type.");
}
T val = ((T[])Enum.GetValues(typeof(T)))[0];
if (!string.IsNullOrEmpty(str))
{
foreach (T enumValue in (T[])Enum.GetValues(typeof(T)))
{
if (enumValue.ToString().ToUpper().Equals(str.ToUpper()))
{
val = enumValue;
break;
}
}
}
return val;
}
Enum değerini int ile elde etmek için C # 'da yöntem aşağıdadır.
public T GetEnumValue<T>(int intValue) where T : struct, IConvertible
{
if (!typeof(T).IsEnum)
{
throw new Exception("T must be an Enumeration type.");
}
T val = ((T[])Enum.GetValues(typeof(T)))[0];
foreach (T enumValue in (T[])Enum.GetValues(typeof(T)))
{
if (Convert.ToInt32(enumValue).Equals(intValue))
{
val = enumValue;
break;
}
}
return val;
}
Aşağıdaki gibi bir numaram varsa:
public enum TestEnum
{
Value1 = 1,
Value2 = 2,
Value3 = 3
}
daha sonra yukarıdaki yöntemleri şu şekilde kullanabilirim:
TestEnum reqValue = GetEnumValue<TestEnum>("Value1");
TestEnum reqValue2 = GetEnumValue<TestEnum>(2);
Umarım bu yardımcı olur.