what is Anonymous Method.? and
What is shadowing?
Answer Posted / kavitha
Anonymous method - those method which does have any name and
type.. while declaration but its type is defined dynamically
depending upon the type the method
for eg-
int n = 0;
Del d = delegate() { System.Console.WriteLine("Copy #:{0}",
++n); };
shadowing - if two methods have the same name and
signature. we can hide the scope of one method to access
another method
using shadow keyword .
for eg - we can use tostring() method in our program by
Public Class Class2
Inherits Class1
Shadows Sub MethodA()
MsgBox(“Method A Class2 called”)
End Sub
Overrides Sub MethodB()
MsgBox(“Method B Class2 called”)
End Sub
End Class
| Is This Answer Correct ? | 6 Yes | 2 No |
Post New Answer View All Answers
Why is lazy loading?
Define method overloading in c#?
Can struct have constructor c#?
How many parameters can a method have c#?
How do you declare an interface in c#?
What is data dictionary in c#?
What is verbatim string?
Why do you need boxing in c#?
Explain the difference between user control and custom control. Also, explain their use.
What do you mean by the delegate in c#?
What is default class in c#?
How to parse a date time string?
Why do we need ienumerable in c#?
What is a lambda expression in c#?
Why singleton is sealed?