Posts Tagged ‘.Net’
Convert integer to Enum instance
星期一, 十月 27, 2008 12:19 No Commentspublic void EnumInstanceFromInt()
{
// The .NET Framework contains an Enum called DayOfWeek.
// Let’s generate some Enum instances from int values.
// Usually you wouldn’t cast an instance of an existing Enum to an int
// in order to create an Enum instance. You would have the actual
// integer value, perhaps a value from a database [...]