Domanda

Is there a shortcut or menu-option to convert a prop snippet?

 public string SomeProperty { get; set; }

to propfull snippet

private string _someProperty;
public string SomeProperty
{
get { return _someProperty;}
set { _someProperty = value;}
}

It would come in handy to add extra functionality.

È stato utile?

Soluzione

There is nothing in Visual Studio that does this (as far as I know). Resharper has a "To property with backing field" refactoring though.

Altri suggerimenti

I know this was 8 Years ago but i found an answer

Go to Tools > Options

Set this to 'Never'

Then go to your property and press Ctrl + .

And choose 'Convert to full property'

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top