Can I create ternary operators in C# ?
Posted
by Scott S
on Stack Overflow
See other posts from Stack Overflow
or by Scott S
Published on 2010-02-05T07:56:10Z
Indexed on
2010/05/12
23:54 UTC
Read the original article
Hit count: 218
c#
|ternary-operator
I want to create a ternary operator for a < b < c which is a < b && b < c. or any other option you can think of that a < b > c and so on... I am a fan of my own shortform and I have wanted to create that since I learned programming in high school.
How?
© Stack Overflow or respective owner