请教VS2005中的资源的使用
请教VS2005中的资源的使用。
我想将一些数据放在资源文件中,但没法读出,例如我想资源中添加一个字符串,名字为Welcome,我用下面的程序想在程序中读出,但提示为找不到所标识的资源,代码如下,请高手指教。
ResourceManager rm = null;
rm = new ResourceManager("Resources", Assembly.GetExecutingAssembly());
CultureInfo ci = Thread.CurrentThread.CurrentCulture;
string aaa = rm.GetString("Welcome", ci);