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...

MULTICAST DELEGATES IN C#.NET WITH REAL TIME EXAMPLE

Answer Posted / lince thomas

delegate void myDelegate(string s);//this is a delagate
//two functions below.

private void SayHello(string h)
{
MessageBox.Show("Hello" + h);
}

private void SayHai(string h)
{
MessageBox.Show("Hai" + h);
}

private void button1_Click(object sender, EventArgs e)
{
Delegate del;
myDelegate objDel = new myDelegate(SayHello);
myDelegate objDel1 = new myDelegate(SayHai);
del = MulticastDelegate.Combine(objDel, objDel1);
del.DynamicInvoke("Peter");
}

Is This Answer Correct ?    17 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are the benefits of normalization?

1109


List out a number of the wants to setup a SQL Server failover cluster?

1075


Can sub report data source be different from that of the parent report?

143


How do you handle datasets larger than 50 gb?

162


What are exact numeric data types in ms sql server?

1077


How to drop existing views from a database in ms sql server?

1103


Explain temporary table vs table variable by using cursor alternative?

1001


What is difference between unique and primary key?

913


what happens on checkpoint? : Sql server database administration

1102


What is difference between equi join and inner join?

950


Mention the uses of stored procedures.

972


Why we need sql server?

970


What is the new security features added in sql server 2014? : sql server security

1000


What are the steps you must follow to hide sql server instances?

978


What is the process of normalization?

1126