I tried searching a lot for internationalization of custom messages but made me more and more confused.
What I need is just one small thing.
Currently when I write following lines,
int i = 5;
int j = 10 / (i - i);
it gives me exception in English. Even by throwing DivideByZero Exception in English like "Attempted Divide By Zero".
I just want this message in some other language i.e hi-IN culture.
I do have Hindi language installed in my OS as well. I tried changing Culture, UICulture everything. None are working.
Does anyone has any idea?