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 the difference between int.parse and int.tryparse methods?
Where test director stores its data ? Database ,Local file etc...? I need to read this data from Visual Studio 2005 c# client. Regards
What is private readonly in c#?
what is the difference between interface and multiple interface?
What is private static in c#?
Is it possible to inherit multiple interfaces?
Hi Friends, I am going through Siemens Interview Procedure from last 1+1/2 months. I went through 1 written + 2 Technical + 1 Managerial Round process after which I got call from HR informing that "you are selected and we would like to meet you for HR round". HR round was very nominal compared to MR. HR Round last for hardly 5 mins. They told me that you will get the final result on Friday. Still I have not received any feedback from them. Please help!!!
What are events in C#?
In object oriented programming, how would you describe encapsulation in c#?
Give examples for reference types?
Which debugging tools you can use in the .NET ssSDK?
How to sort an int array in c#?
Explain About disco and uddi
How to move to a state-related codebase?
What is the property of class?