[RESOLVED] [2.0] Default access modifier for classes
At first I thought it was private because the default access modifier for variables, methods, functions, etc are private, but I soon found that it was not because I was able to reference them from other classes. Then I thought it was public, but then found out that it was not. Now I'm thinking it's internal, which it may or may not be. But what is it really, I'd sure like to know. Is there some sort of custom access modifier specifically for classes that isn't actually a keyword or something? What access modifier does a class use by default? :ehh:
Re: [2.0] Default access modifier for classes
They default to "Internal" and you can read about it here:
http://msdn2.microsoft.com/en-us/lib...21(VS.80).aspx
Re: [2.0] Default access modifier for classes
Oh, alright, that what I was thinking when I posted this. Thanks. Resolved.