I've recently started with .Net remoting and I have managed to get working with some simple tutorials such as building a library dll that works as a calculator which the client can access and use(https://www.youtube.com/watch?v=Ve4AQnZ-_H0).

What I'm looking for to understand is how I could access current information that is held on the server. For example if I have this simple part running on the server:

Code:
int x = 0;

while (!Console.KeyAvailable)
{
x++;
System.Threading.Thread.Sleep(1000);
Console.WriteLine(x);
}


What I found so far is that the dll built is only returning a static result, such as with the calculator. I'd want to be able to tell how much x is on the server at any given time, through the client.


I don't know if I'm being clear enough but I'll try to explain better if it's needed.