Answer Posted / venkat2050
delegate is nothing but a wrapper we call any method at
runtime by using the keyword del
we have two class a and b we class the delegetae from one
class to another class
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
Are structs value types or reference types?
What is new method in c#?
What is thread in c#?
How big is a float?
Is static thread safe?
How big is a 64 bit integer?
What is the use of console application in c#?
Why we use extension methods in c#?
What is datacontract in c#?
How do I enforce const correctness in c#?
What is the default modifier for class in c#?
What is the difference between list and arraylist in c#?
In a C# class we have a SortedList member m_addinProjects
we want to provide an iterator to allow the consumer of
this class access to the items in the collection. Please
provide an iterator method for the AnalyzeAddinsDLL class
below and an example of how it would be used.
namespace AnalyzeAddinsDLL
{
public class AllAddInProjects
{
private SortedList
What is the advantage of extension method in c#?
What is the difference between interface and functional interface?