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

How the authentication mode can be changed?

1120


What is a collation in ms sql server?

1070


Why should you use or avoid select * statements?

1015


How to list all user names in a database?

1045


What is the difference between update lock and exclusive lock?

969


What are cascading parameters in ssrs reports?

229


How to encrypt data between dialogs?

1089


How to update muliple row in single query?

1046


How to handle error or exception in sql?

974


what is the difference between writing data to mirrored drives versus raid5 drives. : Sql server administration

962


Tell me what is the stuff and how does it differ from the replace function?

976


How to enter date and time literals in ms sql server?

1007


What is the difference between functions and stored procedures?

1151


what are different types of raid configurations? : Sql server database administration

1046


What authentication modes does sql server support?

1076