Explain the term inheritance in C#.
What is event delegate in c#?
Why is aws serverless?
Explain what is the smallest unit of execution in .net?
Did a generic class can be inherited by a normal class?
Trace the O/p for a program on inheritance and Polymorphism. 3 classes A,B,C A with two methods public virtual SomeMethodA public virtual SomemoreMethodA B:A overide virtual SomeMethodA C:B new Method SomeMethodA override SomeMoreMethodA main method { b new instance of B b.SomeMethodA b.SomeMoreMethodA b1 new instance of C b1.SomeMethodA b1.SomeMoreMethodA }
what are the advantages of c# over vb.net?
10 Answers Choice Solutions, HCL, Practical Viva Questions,
What is c# in asp net?
Why are mutable structs evil?
how to retrive a TextBox value in to Sql database using C# windows form application coding
Explain attributes in c#?
How encapsulation and abstraction defined/used in C#.NET.
what is the need of using interface in program ex:if we have a program like this interface1() { void method1(); void method(); } class a1 : interface1 { a1 b = new b(); b.method1(); b.method2(); } so without using interface also we can achieve this then wat is the need to use the interface? plz give me the answer