satellite03
IS-IT--Management
How can i access a private method of a class ? whats the syntax ?
How can i access this method in another class B ?
Code:
class A
{
int x;
private void method()
{
// do something
}
}