Question

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.

Était-ce utile?

La solution

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

Autres conseils

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'

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top