This is the code for multilanguage:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Reflection;
using System.Resources;
using System.Text;
using System.Threading;
using System.Windows.Forms;
namespace WindowsFormsMultiLanguage
{
public partial class Form1 : Form
{
ResourceManager m_resourceManger;
public Form1()
{
InitializeComponent();
m_resourceManger = new ResourceManager("WindowsFormsMultiLanguage.Localization", Assembly.GetExecutingAssembly());
// Init UICulture to CurrentCulture
Thread.CurrentThread.CurrentUICulture = Thread.CurrentThread.CurrentCulture;
// Init Controls
UpdateUIControls();
}
private void UpdateUIControls()
{
try
{
if (m_resourceManger != null)
{
this.label1.Text = m_resourceManger.GetString("test1");
this.label2.Text = m_resourceManger.GetString("test2");
}
}
catch (System.Exception e)
{
MessageBox.Show(e.Message);
}
}
private void OnLanguageChange(object sender, EventArgs e)
{
RadioButton radioButton = sender as RadioButton;
string culture = string.Empty;
switch (radioButton.Text)
{
case "French - France (fr-FR)":
culture = "fr-FR";
break;
case "U.S. English (en-US)":
culture = "en-US";
break;
}
// This is used for the language of the user interface
Thread.CurrentThread.CurrentUICulture = new System.Globalization.CultureInfo(culture);
Thread.CurrentThread.CurrentCulture = new System.Globalization.CultureInfo(culture);
}
}
}
I'm getting a error message, cannot resolve resource item test&, test2 at this point:
this.label1.Text = m_resourceManger.GetString("test1");
this.label2.Text = m_resourceManger.GetString("test2");
I have added 2 reource files 1 for english and 2nd for french, I don't know what is the mistake..

I'm sharing this project on SkyDrive: https://skydrive.live.com/redir?resid=8FE34CB77340CAA9!150 Please help me.
test1 & test2– linguini Nov 2 '12 at 10:42