Versions of Enum
Posted
by phenevo
on Stack Overflow
See other posts from Stack Overflow
or by phenevo
Published on 2010-04-14T09:29:18Z
Indexed on
2010/04/14
9:33 UTC
Read the original article
Hit count: 597
Hi, I've got Enum:
public enum ObjectType { Country=0, Region=1, Province=2, City=3, Hotel=4 }
I have two applications in two language versions, and this Enum is displaying in some place, so depends of language version I wanna displaying correct version of Enum
in german version instead Country Land etc.
This Application are using the same websercice which has declaration of this enum.
© Stack Overflow or respective owner