satellite assembly
ASP.NET
1
Posts
1
Posters
0
Views
1
Watching
-
I have created an assembly(for multilingual application) and installed in GACUtil with strong name but when i tried to access this assembly using Thread.CurrentThread.CurrentUICulture = new CultureInfo(specificCulture); string baseName = "BiLingual"; ResourceManager rm = new ResourceManager(baseName, typeof(Program).Assembly); label1.Text = rm.GetString("label1"); it shows error : "Could not find any resource" GAC assembly name : BiLingual.resources culture : en-US could somebody know what is happening here and how to access the satellite assembly thnks in advance