I have a class (mydatarec) in my project (client) that is referenced to another project (server). When I call the public double (xxr) in the other project (server) I always get a zero value:
///client///
public class mydatarec
{
public static double xxr;
}
.
.
static void Main(string[] args)
{
mydatarec.xxr = 100;
...
}
In the other project:
///server///
//When I call it here..
Console.WriteLine(mydatarec.xxr); // I always get 0
I dont know how to continuously change the static double. I need your help!