what is an internal specifier? what happens internally when
I use access specifier Internal ?
Answers were Sorted based on User's Feedback
Answer / sandeep soni
internal specifier means that the class or member for which
it is used is local to the Assembly and is not accessable
to code outside the assembly.
Is This Answer Correct ? | 6 Yes | 2 No |
Answer / manojavam
Internal specifier will allow the user to use the
componenet inside the assembly but not outside the assembly.
Is This Answer Correct ? | 2 Yes | 0 No |
Answer / vijay rana
internal means class or member is only accessible in the
assembly only;
Is This Answer Correct ? | 3 Yes | 3 No |
Answer / viveka
Internal Specifier is used in C#. It can be accessed by all
the classes with in the assembly but not from outside the
assembly.
Is This Answer Correct ? | 1 Yes | 1 No |
Is c# an array?
What is icomparable in c#?
What?s the difference between the Debug class and Trace class?
Is list passed by reference c#?
Can I use exceptions in c#?
What are the three types of operators?
Contrast System.String and System.Text.StringBuilder classes?
What is virtual class in C#?
How many types of methods are there in c#?
What is the difference between and xml documentation tag?
Can I define a type that is an alias of another type (like typedef in c++)?
Is array passed by reference in c#?