New starter - Common Module Q.
-
Is there such a thing as a common code module (like a VB Bas File) where a c# application can declare and populate publicly accesible objects / variables ? I'm trying to implement Remoting. The proxy class that is used is always declared as New. If I get the class from the singleton running server then I want it to know about the application's state ? Ie is the object on the server connected to the database etc... Any help gratefully received. Cheers Chubby..
-
Is there such a thing as a common code module (like a VB Bas File) where a c# application can declare and populate publicly accesible objects / variables ? I'm trying to implement Remoting. The proxy class that is used is always declared as New. If I get the class from the singleton running server then I want it to know about the application's state ? Ie is the object on the server connected to the database etc... Any help gratefully received. Cheers Chubby..
-
there is nothig like .bas in C# How ever you can make a class with static members and methods to access them throughout application. sorry for my bad English.
Thanks.