Why you need to directly access the private members in a class ?. In general if you want to access it implement a public method with appropriate parameters which can access the private member and get or set values of the private member in the class based on your requirements.
Tom