B
Boni
Dear all,
Following situation
class A{
static Arraylist B;
}
void func(){
A::B=...
}
I would like to allow to use B inside of this assembly but not outside.
If I declare B as private I am not able to use it inside of func(), if
public then it also could be used outside.
Is it possible to have assembly private types? If yes, what keyword should I
use.
Thanks,
Following situation
class A{
static Arraylist B;
}
void func(){
A::B=...
}
I would like to allow to use B inside of this assembly but not outside.
If I declare B as private I am not able to use it inside of func(), if
public then it also could be used outside.
Is it possible to have assembly private types? If yes, what keyword should I
use.
Thanks,