My.Settings - Runtime parameters

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Does anyone use the My.Settings for runtime parameters? I.E. storing global
variables?

Is that proper?
 
I use it for all of my runtime environment settings. It is proper because
that is what MS implemented it for.
 
Spam Catcher said:
Does anyone use the My.Settings for runtime parameters? I.E. storing
global
variables?

Settings are typically persisted when the application terminates and
reloaded when the application starts, so if you want this behavior, use
'My.Settings'.
 
I use it for all of my runtime environment settings. It is proper
because that is what MS implemented it for.

OK, just checking because it seems that the My.Settings is more for "User
Preferences" than runtime preferences.

In anycase, it's a nice framework to use :-)
 
Back
Top