Click here to Skip to main content
15,880,469 members
Articles / Programming Languages / C#

Localization process by using resource files in .NET

Rate me:
Please Sign up or sign in to vote.
4.56/5 (9 votes)
17 May 2010CPOL7 min read 70.2K   4.4K   42  
Process for localization when resource files are used in a Windows Forms application.

Microsoft Visual Studio Solution File, Format Version 11.00
# Visual Studio 2010
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Util", "Util\Util.csproj", "{3706B204-5C8F-4DB7-81D2-94E29D269851}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HelloWorld", "HelloWorld\HelloWorld.csproj", "{69BBE724-C773-4F73-90E8-64EEE4859343}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HelloWorld_Application", "Shell\Shell\HelloWorld_Application.csproj", "{E47373A5-803E-4D2D-8E0B-3323C0572D96}"
EndProject
Global
	GlobalSection(SolutionConfigurationPlatforms) = preSolution
		Debug|Any CPU = Debug|Any CPU
		Release|Any CPU = Release|Any CPU
	EndGlobalSection
	GlobalSection(ProjectConfigurationPlatforms) = postSolution
		{3706B204-5C8F-4DB7-81D2-94E29D269851}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{3706B204-5C8F-4DB7-81D2-94E29D269851}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{3706B204-5C8F-4DB7-81D2-94E29D269851}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{3706B204-5C8F-4DB7-81D2-94E29D269851}.Release|Any CPU.Build.0 = Release|Any CPU
		{69BBE724-C773-4F73-90E8-64EEE4859343}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{69BBE724-C773-4F73-90E8-64EEE4859343}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{69BBE724-C773-4F73-90E8-64EEE4859343}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{69BBE724-C773-4F73-90E8-64EEE4859343}.Release|Any CPU.Build.0 = Release|Any CPU
		{E47373A5-803E-4D2D-8E0B-3323C0572D96}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{E47373A5-803E-4D2D-8E0B-3323C0572D96}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{E47373A5-803E-4D2D-8E0B-3323C0572D96}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{E47373A5-803E-4D2D-8E0B-3323C0572D96}.Release|Any CPU.Build.0 = Release|Any CPU
	EndGlobalSection
	GlobalSection(SolutionProperties) = preSolution
		HideSolutionNode = FALSE
	EndGlobalSection
EndGlobal

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Architect BrainScale Consulting
India India
I am a Technical Architect and Managing Partner for BrainScale Consulting. At BrainScale we do training and consulting on latest and greatest on Microsoft technology stack.

MCSD and BizTalk 2006 Certified Technical Specialist.

-Phani

Comments and Discussions