Search code examples
c#code-snippets

Convert prop to propfull in Visual Studio


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.


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.