what is .resx file in c# windows application
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
SenthilkumarPosted Feb 29, 2012, 4:36 AM
its more over very useful when you support for multiple languages english, hindi, japan, chinese, etc..,
You will be having equvelent files, and content will be loaded from appropriate resx files.
It has advantages of no need to change in appliction and build the application. Text can be changed in the resource file.
Sam HobbsPosted Feb 23, 2012, 3:30 AM
A resx file is functionally similar to a rc file but there are many differencs. A resx file uses the XML format but XML did not exist back when rc files were designed. The resx extension implies that they are an extended version of res files.
Satyapriya NayakPosted Feb 23, 2012, 1:58 AM
The Windows Forms Resource Editor is a visual layout tool that helps localization experts localize Windows Forms forms. The .resx or .resources files that are used as input to Winres.exe can be created using a visual design environment such as Microsoft Visual Studio .NET.
Please refer the below link
http://msdn.microsoft.com/en-us/library/8bxdx003%28v=vs.71%29.aspx
Thanks