Do out parameters in C# have any performance implications I should know about? (Like exceptions)
I mean, is it a good idea to have
Not a performance issue, but something that came up earlier - you can't use them with variance in C# 4.0.
Personally, I tend to use out
parameters a fair amount in my private code (i.e. inside a class, having a method that returns multiple values without using a separate type) - but I tend to avoid them on the public API, except for the bool Try{Something}(out result)
pattern.