If have a class like this
public static class Globals {
public static string MyString;
static Globals() {
MyString = "example";
}
}
will MyString always be "example" as long as the app process is running (possibly in background)?
-- EDIT --
Assume that MyString is not changed by the user.