Can visual studio suggest variable names?

visual-studio, visual-studio-2010

Solution

Visual Studio does not do what you're describing, but it is possible to get this functionality through extensions. I know ReSharper does this (and much more), so you might want to give it a try.

Problem

Eclipse can automatically create (or suggest) variable names. For instance if I have a class named MyClass and i want to create an object from it, MyClass myClass = new MyClass(); In Eclipse after class name (MyClass) i hit ctrl+space key and Eclipse automaticly suggests name for the variable (myClass). Is there any similar feature in Visual Studio?

Original source

Related problems