Wats the diff between sealed class and private class in
inheritance
Answer Posted / robert j
continuation from the prev.post...
We can put the "private" keyword, if and if only the class
is in public class.. It is rarely used..
public class a
{
...
private class b
{
..
}
}
otherwise, we can not put private keyword over the classes
directly..
| Is This Answer Correct ? | 10 Yes | 4 No |
Post New Answer View All Answers
Is c# an open source language?
Is comparable a functional interface?
What are desktop applications examples?
What is view state c#?
How do you name a variable in c#?
What is delegates and events?
What does void do in c#?
What is the difference between out and ref in c#?
What is difference between throw and throws in c#?
What are constants in c#?
Why would you use a class property in c#?
What is a cshtml file?
What is sqlconnection in c#?
Explain About delegates
How do you inherit a class into other class in c#?