T
Tony Johansson
Hello!
When I define a class the default access modifier is internal.
So if I just write
class MyTest
{
. . .
}
this definition has internal as access modifier
but if I define a delegate as
delegete returnType SomeName (someArgumentList);
Is it the same here that internal is the default access modifier if none is
given
//Tony
When I define a class the default access modifier is internal.
So if I just write
class MyTest
{
. . .
}
this definition has internal as access modifier
but if I define a delegate as
delegete returnType SomeName (someArgumentList);
Is it the same here that internal is the default access modifier if none is
given
//Tony