B
Brahmam
HI,
Suppose i have the requirement that i want to hide the pubilc members
of a class without modifying the code inside the class
Example :
class A
{
public foo1();
public foo2();
public foo3();
public foo4();
public foo5();
public foo6();
public foo7();
public foo8();
public foo9();
public foo10();
}
I made this class as a DLL and i have given this DLL to the user. Now the
requirement is, For the user only 7 public methods has to be exposed and the
remaining 3 has not , for that what to do , I am not allowed to change the
code inside the class (But , i can implement this class), can anyone give me
the solution for this.
Thanks in advance,
BR.
Suppose i have the requirement that i want to hide the pubilc members
of a class without modifying the code inside the class
Example :
class A
{
public foo1();
public foo2();
public foo3();
public foo4();
public foo5();
public foo6();
public foo7();
public foo8();
public foo9();
public foo10();
}
I made this class as a DLL and i have given this DLL to the user. Now the
requirement is, For the user only 7 public methods has to be exposed and the
remaining 3 has not , for that what to do , I am not allowed to change the
code inside the class (But , i can implement this class), can anyone give me
the solution for this.
Thanks in advance,
BR.