Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

C# => operator?

Tags:

I have a question about the => operator in C#.

I am looking at the Expression Blend 4 samples. There is one line in the Contact sample which includes:

//In C:\Program Files (x86)\Microsoft Expression\Blend 4\Samples\en\Contacts\ //Contacts\ViewModels\ContactsViewModel.cs:   contactDetailWindow.Closed += (o, e) => {                                  finishedCallback(contactDetailWindow.DialogResult);     // Or, C:\Program Files (x86)\Microsoft Expression\Blend 4\Samples\en\    // Contacts\Contacts\ViewModels\ContactsViewModel.cs    this.EditContact(newContact, dialogResult =>    {         if (dialogResult.HasValue && dialogResult.Value)         {         this.Contacts.Add(newContact);         }    }); }; 

What is the => operator actually doing? Is it overriding something?

like image 487
heavy rocker dude Avatar asked Apr 25 '11 17:04

heavy rocker dude


People also ask

What C is used for?

C programming language is a machine-independent programming language that is mainly used to create many types of applications and operating systems such as Windows, and other complicated programs such as the Oracle database, Git, Python interpreter, and games and is considered a programming foundation in the process of ...

What is C in C language?

What is C? C is a general-purpose programming language created by Dennis Ritchie at the Bell Laboratories in 1972. It is a very popular language, despite being old. C is strongly associated with UNIX, as it was developed to write the UNIX operating system.

What is the full name of C?

In the real sense it has no meaning or full form. It was developed by Dennis Ritchie and Ken Thompson at AT&T bell Lab. First, they used to call it as B language then later they made some improvement into it and renamed it as C and its superscript as C++ which was invented by Dr.

Is C language easy?

Compared to other languages—like Java, PHP, or C#—C is a relatively simple language to learn for anyone just starting to learn computer programming because of its limited number of keywords.


1 Answers

It's called the lambda operator.

 b.Click += (s, e) => Log("Sender :" + s + "EventArgs " + e); 

is identical to

b.Click += b_Click;  void b_Click(object sender, EventArgs e) {     Log("Sender :" + sender + "EventArgs " + e); } 

or

b.Click += delegate(object sender, EventArgs e)             {                 Log("Sender :" + sender + "EventArgs " + e);              }; 
like image 54
Bala R Avatar answered Sep 20 '22 02:09

Bala R