Hi,
Years ago, I use resource file to support internationalization. When a resource file was added. A namespace corresponding to the file name is generated. Then, you can access it from the code. For example, if you have a "Resources.resx" and have a string named CompanyName. You can use it as the following code:
lblCompany.Text = Resources.CompayName;
When I want to take this advantage today, I found the namespace did not added as before. Is this feature removed from Visual Studio 2008?
Thanks!