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.
ADDED
I have a datagridview and list of objects which classes has field ObjectType and I must display this pool in datagridviev, so it's a problem