変換の2つの方法の間で選択することはできません。intベストプラクティスへの列挙
1をintに列挙型から変換することにより、ベストプラクティスは何ですか:
public static int EnumToInt(Enum enumValue)
{
return Convert.ToInt32(enumValue);
}
2:
public static int EnumToInt(Enum enumValue)
{
return (int)(ValueType)enumValue;
}
Golly私はあまりこの問題のバグ。 –