Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

About delegates ?

Answer Posted / naren

1. Delegates holds reference to a method
2. Delegates are objects which points towards a function
which matches its signature
3. Delegates are reference type used to encapsulate method
with specific signature
4. Delegates are typesafe and secure

//declaring a delegate

delegate void SampleDelegate(string message)

//declaring delegate with same signature

static void SampleDelegateMethod(string message)
{
console.writeline(message);
}

//creating delegate method

SampleDelegate d1 = new SampleDelegateMethod();

//invoking method

d1(message);

Is This Answer Correct ?    10 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain Optimization technique description?

989


How to Insert/Add in ASPXgridview

979


Explain the different types of assemblies?

886


What is jade template engine?

993


What can you do with asp.net?

896


Describe in brief .net framework and its components.

933


How do you secure your configuration files to be accessed remotely by unauthorized users?

1062


Difference between singleton and singlecall.

922


Which is better php or asp.net?

902


Explain what is the procedure to create the environment for asp.net? : asp.net mvc

982


What is data cache in sql server?

1046


Write some code using interfaces, virtual methods, and an abstract class`

1988


Which method is used to force all the validation controls to run?

968


Explain the difference between value type and reference type?

597


How could you modify xaml content from javascript?

961