Answer Posted / praseetha sandeep
This specifier allow class to hide member variables and
member functios to be accessed from other class objects and
functions except the child class with in the application
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
What is public or shared assemblies ?
What does == mean in c sharp?
what will be the output of the given below coding. using System; public class Exercise { static void OddNumbers(int a) { if (a >= 1) { Console.Write("{0}, ", a); a -= 2; OddNumbers(a); } } public static int Main() { const int Number = 9; Console.WriteLine("Odd Numbers"); OddNumbers(Number); Console.WriteLine(); return 0; } }
What is concrete class in c# with example?
what is virtual method in c#?
What is the difference between and xml documentation tag?
What are extender provider components? Explain how to use an extender provider in the project.
What is xpath in c#?
What is Covariance and contravariance in C#?
Which is faster abstract class or interface in c#?
Explain what a diffgram, and a good use for one Define diffgram? How it be used?
How big is int16?
How do you specify a custom attribute for the entire assembly?
How to prevent the error while updating ui control from another thread?
Define constructors