I want some variables to be global across the the project and accessible in every form. How can I do this?
|
1
|
|
|
|
|
|
yes you can by using static class. like this:
and for using any where you can write:
|
||||||
|
|
|
One way, Solution Explorer > Your Project > Properties > Settings.Settings. Click on this file and add define your settings from the IDE. Access them by Properties.Settings.Default.MySetting = "hello world"; |
||
|
|
|
|
You can use static class or Singleton pattern. |
||
|
|
|
|
|
||||||
|
|
|
Or you could put your globals in the app.config |
||
|
