I have a class where it contains a variable
 public class MyClass
{
    public static string testenome;
    public string Testenome
    {
        get { return testenome; }
        set { testenome = value; }
    }
}
When I leave the application in the background I lose the value of the variable as soon as I return.
To some way for me to make that variable stay fixed, only if I close the app so I lose it ?
 
    