Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What does '=>' mean?

Tags:

c#

lambda

What does => means? Here's a code snap:

Dispatcher.BeginInvoke((Action)(() => { trace.Add(response); }));
like image 641
whi Avatar asked Sep 29 '11 05:09

whi


People also ask

What do a symbol mean?

Definition of symbol (Entry 1 of 2) 1 : an authoritative summary of faith or doctrine : creed. 2 : something that stands for or suggests something else by reason of relationship, association, convention, or accidental resemblance especially : a visible sign of something invisible the lion is a symbol of courage.

What does >> mean in chat?

It means “is really good” or “is better than (some alternative)”. This usage originally cones from maths, where > means “is greater than”, for example 5 > 3.

What is this :) mean?

"Happy" is the most common definition for :) on Snapchat, WhatsApp, Facebook, Twitter, Instagram, and TikTok. :) Definition: Happy.

What is the meaning of <<< 3?

The emoticon <3. means "Love." The characters < and 3 (which literally mean "less than three") form a picture of a heart on its side, which is used as an emoticon, meaning "love." For example: Sam: <3. Ali: <3.


1 Answers

it's lambda expression which is the simplified syntax of anonymous delegate. it reads 'goes to'. equivalent to Dispatcher.BeginInvoke((Action)delegate() { trace.Add(response); });

like image 101
ojlovecd Avatar answered Sep 20 '22 22:09

ojlovecd