Does anyone know if it is possible to make a variable public to all classes in your project.
Jeremy
Printable View
Does anyone know if it is possible to make a variable public to all classes in your project.
Jeremy
yes just put them in a module
There are no modules in C#. Everything is wrapped in a class. Just create a public helper class and add static member(s).