Visual Studio 2010 'Assign to local variable' function?
Posted
by Frank Meulenaar
on Stack Overflow
See other posts from Stack Overflow
or by Frank Meulenaar
Published on 2010-05-08T09:47:19Z
Indexed on
2010/05/08
9:58 UTC
Read the original article
Hit count: 190
visual-studio
|keyboard-shortcuts
I'm in love with the function in Eclipse "assign to field". Basically, when I have
getString();
and I type ctrl-2, Eclipse converts this into
String getString = getString();
Is this possible in VS 2010?
© Stack Overflow or respective owner