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
What is type cast in C#?
What is multidimensional array in c#?
What is serialization in c#?
why delegate is type safe?
What are the properties of c#?
Explain the difference between Metadata and Manifest
How do you escape in c#?
How do I create multifile assembly?
How to update the gui from another thread in c#?
What does ienumerable mean?
What is a property in c#?
What is the use of properties window?
What is join in c#?
What is use of a HashTable in .NET?
Can a method return multiple values in c#?