"Yosh" <Yosh@nospam.co m> wrote in message
news:%23kWPW70R FHA.1564@TK2MSF TNGP09.phx.gbl. ..[color=blue]
> What is the best method to convert an integer to Enum equivelant?
>
> I hope this makes sense.
>
> Thanks,
>
> David
>[/color]
// Notice the type specifier, int.
public enum MyEnums : int
{
Enum1 = 0,
Enum2,
Enum3
}
Comment