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 |
In the page load event I assigned dropdownlist’s datasource property to a valid list. On the submit button click.. The same datasource property is coming as null. Why?
Illustrate namespaces in c#?
Is there any way to access private memebers of an object from another object?
Write a program to find the angle between the hours and minutes in a clock
Distinguish between a class and struct?
Define constructor in c#.
Can we have only “try” block without “catch” block in c#?
What is datacontract in c#?
What is difference between events and delegates?
Is it possible to nest cfml conditional tags?
Can interface inherit class in c#?
What is a void c#?