I have an object which contains all the global stuff that needs to be available to the entire app. However, among that information is a list of objects that listens to messages, among them the Main activity, in which this global object is declared.
The compiler don't like this, as you can't have activity stuff in Process_Globals.
What is the preferred way of handling this scenario?
Also, what is the difference between Activity and Me (in an activity)?
The compiler don't like this, as you can't have activity stuff in Process_Globals.
What is the preferred way of handling this scenario?
Also, what is the difference between Activity and Me (in an activity)?