As you know we don't have session in WinForm. I have several forms (Customer, Service, Operator, ...) in my project, and I take from Operator some values ( operator Name, Operator LastName and Profile Picture address). I want to store this values somewhere in run-time and whenever I need it, I can fetch it from where I stored it.
Is there an easy way to do this ?
also you can use project properties like this:
//write
Properties.Setting.Default["key"] = value;
Properties.Setting.Default.Save();
//read
value = Properties.Setting.Default["key"];