Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
347 views
in Technique[技术] by (71.8m points)

.net - What does >+ and >- mean in C#

I had accidentally tried this, which compiles! So I was wondering what could this possibly mean.. google didnt help..

if (3 >+ 4)
   dothis() //this is never hit btw..

if (3 >- 4)
   dothis() //this is hit.

Both the code compile btw..

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

It parses as

3 > +4

and

3 > -4

So into the unary + and unary - operators.

If you want an interesting way to explore this, write

Expression<Func<int, int, bool>> func = (x, y) => x >+ y;

and then explore the resulting expression tree func in the debugger. You'll see the unary operator in the tree.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...