I am working on multilingual site and in which i used some enum and now it can be possible that we can make theses enum as per multilingual?
My enum structure is
public enum abc
{
[Description{"multilingual text"}]
StatucActive = 1
}
like this. i want to write multilingual text in description.
No we can’t use enum as a multilingual but i have an alternate option that is use resource file it working like an enum in some situations.
please try resource file and it will solve your problem….