views:

52

answers:

2

I have my c# class file (.cs), and this have messages strings.

How to generate a resource file from the class file?

+1  A: 

Message strings are a UI implementation detail. Consider an enum first. Next, leverage Project + Properties, Resources tab to enter resource strings.

Hans Passant
+2  A: 

If you are looking for extracting strings to resource:

If you are looking for reading from the resource file:

Priyank Bolia
I am looking for massive extracting strings from a code file to a resource file. Exist?
Zeqk