.Net Interview Questions and Answers

Search:

.NET interview questions: - Define delegate & steps to create delegate?

By : Shiv Prasad Koirala | Oct 5th, 2011 | Views : 626 | Comments : 0 Bookmark and Share


We can define delegate as an abstract strong pointer to a function or method. In other words we can create a pointer which points to a method or function and then pass that pointer wherever you wish and invoke the function / method.

It is a 4 steps simple process for delegate creation:-

1. First step is we need to declare a delegate.
2. Then create an object reference for it.
3. Pointing the reference towards a method.
4. And finally we need to invoke the method through a delegate.

Below is the sample code snippet for the same.

// Declare a delegatepublic delegate int PointToAdd(int p, int q);// Create a reference pointerPointToAdd objpointer = null;// Point to the methodobjpointer = Add;// Invoke the function/methodobjpointer.Invoke(60,70);

View video on Shadowing in OOPS as follows: -




Avail from the link more Most asked .NET interview questions   for preparation.

Regards,

Refer author's other blog for complete Dotnet interview questions and answers
 

 
Rate this Article :
1 Star
2 Stars
3 Stars
4 Stars
5 Stars
1 1 1 2 1
 
Article Tags : Net , Net Interview Question , Delegates ,
 
Comments

Write a Comment

All fields marked with * are mandatory

643e9

 

 
 

WCF Interview questions and answers: -What is the difference between WCF fault exceptions and normal .NET exceptions?

In this article we will show difference between WCF fault exceptions and normal .NET exceptions. For more articles and videos visit us on http://www.questpond.com/... Read More

.NET interview questions: - Can you elaborate project life cycle?

In this article we will explain about project life cycle. For more articles and videos visit us on http://www.questpond.com/... Read More

WCF Interview questions:- Which binding do we need to use for WCF REST?

In this article we will show Binding used for WCF REST. For more articles and videos visit us on www.questpond.com... Read More

SQL server interview question: -What are Sub-Queries, co-related queries and difference between them?

In this article we will explain about Sub-Queries and co-related queries. For more articles and videos visit us on http://www.questpond.com/... Read More

Five most important SharePoint 2010 interview questions

This article will give answers to 5 most asked questions in the interview.... Read More

WCF Interview questions and answers: -What is the difference between WCF fault exceptions and normal .NET exceptions?

In this article we will show difference between WCF fault exceptions and normal .NET exceptions. For more articles and videos visit us on http://www.questpond.com/... Read More

.NET interview questions: - Can you elaborate project life cycle?

In this article we will explain about project life cycle. For more articles and videos visit us on http://www.questpond.com/... Read More

WCF Interview questions:- Which binding do we need to use for WCF REST?

In this article we will show Binding used for WCF REST. For more articles and videos visit us on www.questpond.com... Read More

SQL server interview question: -What are Sub-Queries, co-related queries and difference between them?

In this article we will explain about Sub-Queries and co-related queries. For more articles and videos visit us on http://www.questpond.com/... Read More

Five most important SharePoint 2010 interview questions

This article will give answers to 5 most asked questions in the interview.... Read More

Article Categories