T
TonyJ
Hello!
This row below is from the documentation for C++.
A variable declared static in a function retains its state between calls to
that function.
How do I accomplish the above functionality in C#.
If I for example have an eventhandler that is called every 5 seconds I want
to keep some conters between these calls.
//Tony
This row below is from the documentation for C++.
A variable declared static in a function retains its state between calls to
that function.
How do I accomplish the above functionality in C#.
If I for example have an eventhandler that is called every 5 seconds I want
to keep some conters between these calls.
//Tony