I was looking at some example C# code, and noticed that one example wrapped the return in ()'s.
I've always just done:
return myRV;
Is there a difference doing:
return (myRV);
|
|
UPDATE: This question was the subject of my blog on 12 April 2010. Thanks for the amusing question! In practice, there is no difference. In theory there could be a difference. There are three interesting points in the C# specification where this could present a difference. First, conversion of anonymous functions to delegate types and expression trees. Consider the following:
The Visual C# compiler makes a small spec violation here and discards the parenthesis for you. Second:
Third:
So in every case, we allow you to get away with it, even though technically doing so is illegal. |
|||||||||||||||||||||
|
|
No, there is no difference other than syntactical. |
|||||||||||||||||||||
|
|
There are corner cases when presence of parentheses can have effect on the program behavior: 1.
2.
3.
Hope you will never see this in practice. |
|||
|
A good way to answer questions like this is to use Reflector and see what IL gets generated. You can learn a lot about compiler optimizations and such by decompiling assemblies. |
|||||
|