Please guide me what is short cut to generate full properties in Visual Studio 2008 ? Doing prop tab tab generates auto implemented properties but I am looking for short cut to generate full properties with get and set.
public string StringValue
{
get { return stringValue; }
set { stringValue = value; }
}
The snippet to add a full property doesn’t exist in VS 2008.
propfullwas added in 2010.But here is a link on how to add it, by adding another .snippet file: