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
What is method in c#?
What is a hashset c#?
Explain Direct CAST vs CType ?
Why do we need indexer in c#?
Describe the ways of cleaning up objects in c#.
What debugging tools come with the .NET ssSDK?
What are modifiers in c#?
What is type safe code?
code for arranging given number in possible permutation ways ex:123,321,312,132,231,213.
What are async and await?
Is it good to use var in c#?
Is c sharp and c# are same?
Why is lazy loading?
In dynamic link library, which api is used for load library?
What is use of console?