What do you mean by internal keyword in C# programming language?

 Posted by Goud.Kv on 9/1/2014 | Category: C# Interview questions | Views: 1885 | Points: 40
Answer:

internal is an access modifier which provides access between the classes of current project assembly. In other words, a type with internal keyword can be accessed by any members of the same assembly reference and restricted to other assembly members.

syntax,
internal class MyClass

{
............;
...........;
}


Asked In: Spotted While Learning | Alert Moderator 

Comments or Responses

Login to post response