No. Each application instance is isolated from each other using AppDomain. Thus, each instance of the application will run in a separate AppDomain and will not be able to access variables from another domain. To interact with another domain, we need to use Remoting, WCF Service
source share