Hello,
Got strings.resx included in my assmebly as the default language neutral
collection.
ResourceManager res=new ResourceManager ("strings",
Assembly.GetExe cutingAssembly( ));
string test=res.GetStr ing("TestString ");
TestString exists in the resource file. The compiler message window
seems to indicate thsat the strings are compiled and included in the
assembly but I'm getting unhandled exception
System.Resource s.MissingManife stResourceExcep tion
Could not find any resources appropriate for the specified culture in
the given assembly. Make sure "strings.resour ces" was correctly linked
or embedded into assembly.
Help!!!
Got strings.resx included in my assmebly as the default language neutral
collection.
ResourceManager res=new ResourceManager ("strings",
Assembly.GetExe cutingAssembly( ));
string test=res.GetStr ing("TestString ");
TestString exists in the resource file. The compiler message window
seems to indicate thsat the strings are compiled and included in the
assembly but I'm getting unhandled exception
System.Resource s.MissingManife stResourceExcep tion
Could not find any resources appropriate for the specified culture in
the given assembly. Make sure "strings.resour ces" was correctly linked
or embedded into assembly.
Help!!!
Comment