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
How can I make sure my c# classes will interoperate with other .net languages?
What is difference between ilist and list in c#?
How do I do implement a assert?
Why it's said that writing into .NET Application Configuration Files is a Bad Idea?
explain the features of static/shared classes.
When To use HashTable In C#
How to find type of variable?
What is console writeline in c#?
How can we sort an array in c#?
What is the difference between ienumerable and iqueryable?
How do you inherit a class into other class in c#?
What is before string in c#?
Can an interface extend a class c#?
Is it not possible to store a boolean value as a variable?
How is a strongly-named assembly different from one that isn’t strongly-named?