T
Tiberiu Covaci
If I have the following code :
private void A (Type1 param1, Type2 param2 ....){
B();
}
private void B(){
....
}
How can I find out the values for the param1, param2 ... inside B method,
without sending them to B? Is there any posibility to achieve that?
Tahnks,
Tibi.
private void A (Type1 param1, Type2 param2 ....){
B();
}
private void B(){
....
}
How can I find out the values for the param1, param2 ... inside B method,
without sending them to B? Is there any posibility to achieve that?
Tahnks,
Tibi.