tags:

views:

1344

answers:

2

Hi How to read the string from .resx file in c#? please send me guidelines . step by step

+1  A: 

Have a look at this link, it should help.

astander
+2  A: 

This example is from the MSDN page on ResourceManager.GetString():

// Create a resource manager to retrieve resources.
ResourceManager rm = new ResourceManager("items", Assembly.GetExecutingAssembly());

// Retrieve the value of the string resource named "welcome".
// The resource manager will retrieve the value of the  
// localized resource using the caller's current culture setting.
String str = rm.GetString("welcome");
JeffH