C# bracket returned null

Tell me please what is different between

return null;

and

return (null);

Sometime i'd seen each an examples

Jon Skeet
people
quotationmark

There's no difference in behaviour whatsoever - but the latter is distinctly unidiomatic. I've previously seen it as a sign that the author seems to think that return is a function call, or at least want to treat it as such. (Sometimes there are brackets around every return value.)

Just use the first version.

people

See more on this question at Stackoverflow