what is Anonymous Method.? and

What is shadowing?

Answers were Sorted based on User's Feedback



what is Anonymous Method.? and What is shadowing?..

Answer / guest

methods with no names are called as annonymous methods

when two or more programing elements eg.a method has same
name that of other then one method is hiden and has no
reference this is known as shadowing

Is This Answer Correct ?    5 Yes 1 No

what is Anonymous Method.? and What is shadowing?..

Answer / 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

More C Sharp Interview Questions

How can you set image source dynamically from c# application to ”test.png” file?

0 Answers  


What is a multi line comment?

0 Answers  


Can interface inherit class in c#?

0 Answers  


When Should You Call The Garbage Collector In .net?

0 Answers   Siebel Systems,


Can you inherit multiple abstract classes in c#?

0 Answers  






What is an array of arrays called?

0 Answers  


What are different properties provided by Object-oriented systems?

2 Answers  


How to exclude a property from xml serialization?

0 Answers  


What is ulong in c#?

0 Answers  


Why are there five tracing levels in System.Diagnostics.TraceSwitcher?

1 Answers  


What is primitive types in c#?

0 Answers  


Can an exception be thrown from a catch block?

0 Answers   Alcatel-Lucent,


Categories