Question

Let's assume I have a class

public class Dummy
{
    public int DummyInt { get; set; }
    public string DummyString { get; set; }
}

and somewhere in the code I have:

var dummy = new Dummy
{

In VS10, if I press now 'a' I will get a list of members: DummyInt,DummyString. But with ReSharper switched on nothing will be shown if I press 'a'. I must press 'd' to get both fields listed.

I went through ReSharper options, but I can't find it anywhere. Is it possible to switch that off?

R# 7.1

Was it helpful?

Solution

Resharper offers a couple different symbol completions. The basic one is called Symbol Completion and has a default key binding of Ctrl-Space. The more intelligent one is called Smart Completion and has a default key binding of Ctrl-Shift-Space.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top