Pregunta

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.

¿Fue útil?

Solución

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

Otros consejos

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'

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top