Hi,
I have a variable that is used by 2 different threads. One thread uses the variable from the same class in which the variable is defined. The other thread uses the variable from another class by making an object of the class in which the variable is define. Now when 2 threads access the same variable, it shows both the threads different values. Why is this happenening?? One thread only reads the variable and the other one update the variable value.
I access the variable through property.
Thanks,