Deepak.M

Hi,

Here I have to create C#.Net windows application for multilingual support.

I created resx files for each language(for 5 languages). And I may have to add more than 8000 entries in each resx file. I tried with 5000 entries in each resx file. But its taking more time(5 mins on 2GB RAM machine) to open that resx file. And also for compiling that project its taking more time.

Can you please suggest me a way to solve this problem

Thanks & Regards,
Deepak.


Re: .NET Base Class Library Multilingual in c#.net

MadeInCode

Hi deepak,

Normally language resource file has two views ie XML or Data. You can see this on the left bottom corner of .resx editor in visual studio.

In general 'XML' view is good for fast editing copy/paste etc. You should edit/cut/paste only xml elements with <Data> tag. Needless to say you can even edit resx with notpad.

Best regards

MadeInCode






Re: .NET Base Class Library Multilingual in c#.net