Lets say I have some data that I want to store and make it available everywhere till the application is closed.
public class Storage(){
public string Aa {set; get;}
public int Bb {set; get;}
}
var insert = new Storage{
Aa = "Im a string",
Bb = 123
};
Now what changes do I need to make insert
object available anywhere till the application is closed? In other word, how do I save data in Storage
class and make it available till the application is closed?