A User who logs in to the system using functions in the Users class. now i need to read the User's fields (UserID, FullName, GroupID...) from other classes and this seems to me a bit complicated... i cannot use static variables in the users class because they will stay in the memory till the appdomain is recycled and of course i cannot instantiate a new user object because i need the info that have been already instantiated.
how can i retrieve the Users fields / properties from other class?