Thread.CurrentThread.CurrentUICulture = new System.Globalization.CultureInfo("ar-sa"); Thread.CurrentThread.CurrentCulture = new System.Globalization.CultureInfo("ar-sa"); try { text.Text = m_resourceManger.GetString(id.Text); } catch (MissingManifestResourceException) { text.Text = "not available"; }
This code works for me. Is it possible to extend the satellite assembly? I would like to add one more dll with some more string and the resourcemanager should use both the current assembly and the new assembly. How to handle this?
Senthil Kumar M