How to Read from LocalResources in class Global area
- by Nasser Hajloo
I have a class name xxxx and a resource whichthe class read from it to set some string. Everything is fine and nothing goes wrong.
The problem is that I have some Constant Global String which I set them in global area like
 public partial class ExampleDocument : ClassBase
 {
 const string TheProblem = "I can not read this string from resources cause here Methods do not work";
 #region Method
    ...
 #endregion
 }
The question is, How to read this strings frrom Rersource File.