Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Public and Internal members in an Internal class?

Ok, so this may be a bit of a silly question, and there's certainly the obvious answer, but I was curious if I've missed any subtleties here.

Is there any difference in terms of visibility/usability between a public member declared in an internal class and an internal member declared in an internal class?

i.e. between

internal class Foo {     public void Bar()     {     } } 

and

internal class Foo {     internal void Bar()     {     } } 

If you declared the method as public and also virtual, and then overrode it in a derived class that is public, the reason for using this modifier is clear. However, is this the only situation... am I missing something else?

like image 416
Noldorin Avatar asked Apr 01 '10 23:04

Noldorin


People also ask

Can internal class have public members?

Class, record, and struct member accessibility However, a public member of an internal class might be accessible from outside the assembly if the member implements interface methods or overrides virtual methods that are defined in a public base class.

What is the difference between internal and public class?

internal means that it's only accessible to other classes which are in the same assembly. Public means it's available to all other classes.

What are internal members?

Internal members are listed as part of the Company Directory, can be added to multiple workspaces at one time, and can view items marked "Internal." Internal Members are generally people within your company. External Members are generally customers, clients, partners, vendors, etc.

What is an internal class?

Internal is one of the access modifiers that limits the access to types defined within the current project assembly. The default accessibility of classes and structs that are declared within a namespace or at the top level of a compilation unit and not within other types is internal.


2 Answers

Consider this case:

public interface IBar { void Bar(); } internal class C : IBar {     public void Bar() { } } 

Here C.Bar cannot be marked as internal; doing so is an error because C.Bar can be accessed by a caller of D.GetBar():

public class D {     public static IBar GetBar() { return new C(); }  } 

A commenter asked a follow-up question: is an explicit implementation of an interface method considered to be public, or private? (C# does not allow you to put an access modifier on an explicit implementation.)

Take a step back and think about what exactly is "public" or "private" about a member: people think wrong things like "private means that a method cannot be called from outside the class", but that's not true; the class could make a delegate to a private method, pass it to anyone, and they can then call a private method.

Rather, accessibility determines where the name of a thing can be used! Explicit interface implementations do not add a name to the class declaration space in the first place; they can only be referred to by name via the interface, not the class. It really doesn't make sense to think of explicit interface implementations as public or private because they don't have a name you can refer to.

like image 169
Eric Lippert Avatar answered Sep 19 '22 23:09

Eric Lippert


A public member is still just internal when in an internal class.

From MSDN:

The accessibility of a member can never be greater than the accessibility of its containing type. For example, a public method declared in an internal type has only internal accessibility

Think of it this way, I would access a public property on....? A class I can't see? :)

Eric's answer is very important in this case, if it's exposed via an interface and not directly it does make a difference, just depends if you're in that situation with the member you're dealing with.

like image 40
Nick Craver Avatar answered Sep 19 '22 23:09

Nick Craver