G
Guest
Can anybody let me know the difference between public and private class
access modifiers? Thanks in advance
access modifiers? Thanks in advance
kchalla said:Can anybody let me know the difference between public and private class
access modifiers? Thanks in advance
Daniel O'Connell said:Do you mean class modifiers(ie public class?) If so there is only public and
internal.
Jon Skeet said:Not quite - a nested class can be private, in which case it's only
visible to the enclosing class, or protected in which case it's only
visible to classes derived from the enclosing class.