Hi. I have a class with a static method. In the static method I want to access a non-static variable of the same class and when I try to do it directly, i'm getting this error message:

An object reference is required for the nonstatic field, method, or property 'Client.clTcpIp.MessToServer'

string MessToServer;

...

public static void method()
{
Access MessToServer....
}


Does anyone know how to solve this error?