Tagged Questions

0
votes
4answers
92 views

Should I fully declare throw-away objects?

If I need to do something like this: var connection = new Connection(host); connection.Execute(Commands.Delete); Is there anything wrong in doing this: (new ...