A question I often ask myself, if you need to call one method on an object, is it best practice to use a variable? Thus far I've guessed the answer is Yes - what's your choice, and reasons for it?
With variable:
MyObject mo = new MyObject();
mo.MyMethod();
//mo not used again
Without variable:
new MyObject().MyMethod();
I'm particularly interested in .NET, however if there are any danger points in other languages I'd also prefer to be forewarned.