Info

  • Thread starter Thread starter Simone
  • Start date Start date
Any string can be stored in a resx file. What is it you are trying to
achieve (your end goal)?

Cheers
Daniel
 
My end goal is to storage different print methods (the print methods differs
because i write in every methods a different layout) because my app use a
specific print method based upon a specific parameter. When my app have to
print bring the exact method and execute it.

Simon.
 
Resx files are not meant for that scenario. Just write all your methods and
call the appropriate one according to your parameter. Inheritance might help
in your scenario... Get an OO book if you are interested in that... look at
the State pattern if you have a design patterns book...

Cheers
Daniel
 
Back
Top