Very often I need to create a new object via a default constructor. E.G.
List<string> myList
I would like to be able to blast some keystroke that setup the rest…
List<string> myList = new List<string>();
Any way to do that with Visual Studio 2010 or a DevExpress plugin (DXCore, CodeRush, or Refactor! Pro)?
I don’t know if it is VS or R# doing it, but I can use
LitabsttabmyList = ntabtab and it will complete to that. However, personally I would suggest simpy:or even
var myList = new Litabsttab();That way there is no duplication or anything more to automate.