G
Guest
I am writing a piece of software which loads multiple parts into different
panels. Each panel can access other panels by accessor methods. My team
wants to create a global variable of type Queue from the System.Collection
class. We want to be able to access this variable in other panels via a call
similar to the following:
Queue localQueue = MainClass.myQueue;
This is similar to the old inline functions in C++ used by the Math
libraries to call functions like Math.Pi. Is there a way to do this in C#
2003 or do I need to develop a wrapper class for the Queue with a custom add
and remove functions.
panels. Each panel can access other panels by accessor methods. My team
wants to create a global variable of type Queue from the System.Collection
class. We want to be able to access this variable in other panels via a call
similar to the following:
Queue localQueue = MainClass.myQueue;
This is similar to the old inline functions in C++ used by the Math
libraries to call functions like Math.Pi. Is there a way to do this in C#
2003 or do I need to develop a wrapper class for the Queue with a custom add
and remove functions.