Does anyone know if there is an easy way to copy an enum? I know [ok, think] I could do something like:
enum MyEnum {
One = TheirEnum.One,
Two = TheirEnum.Two,
Three = TheirEnum.Three,
...
}
but I am wondering if a better way exists?
"Programming is like sex, one mistake and you have to support it forever."
John
johnmc@mvmills.com
enum MyEnum {
One = TheirEnum.One,
Two = TheirEnum.Two,
Three = TheirEnum.Three,
...
}
but I am wondering if a better way exists?
"Programming is like sex, one mistake and you have to support it forever."
John
johnmc@mvmills.com