Are attributes inherited c#?
Why cannot you specify the accessibility modifier for methods inside the interface?
Can we override static class in c#?
Is Multiple-inheritance supported by c#?
What will a loop recorder show?
Can multiple catch blocks be executed?
Explain the Abstract class in c#.net
Can you explain template pattern?
What is a method signature in c#?
What does break do in loop?
What?s the top .NET class that everything is derived from?
4 Answers Hindawi, Siebel, Visual Soft,
class Program { void add() { int x=10, y=20; fun(); Console.WriteLine("{0}", sum); } void fun() { int sum; sum = x + y; } static void Main(string[] args) { Program f =new Program(); f.add(); } } Debug above program.....
What are the advantages of using assemble language programming?