Why do we use comma operator in C#?
Answers
Answered by
2
♦The comma operator is a binary operator that evaluates its first operand and discards the result, it then evaluates the second operand and returns this value.
Similar questions