Question:What does the => operator signify in C#?
A Return statement B Lambda expression C Ternary operation D None
+ AnswerB
+ ExplanationThe =>operator is used in defining lambda expressions.
+ Report