Je recherche un raccourci clavier pour terminer la création des accesseurs par défaut d'une propriété dans une classe C #.
Quelque chose comme...
Je commence à taper:
public int Id
Ensuite, j'appuie sur une ou plusieurs touches et je termine avec:
public int Id { get; set; }
Die Abkürzung ist der Auslöser "Stütze":
prop
name__tabtabint
name__tabId
name__tab
und Sie erhalten am Ende:
public int Id { get; set; }
Essayez avec propfull
, puis appuyez deux fois sur TAB et vous obtiendrez:
private int myVar;
public int MyProperty
{
get { return myVar;}
set { myVar = value;}
}
Vous pouvez également créer un extrait personnalisé:
<CodeSnippets xmlns="http://schemas.Microsoft.com/VisualStudio/2005/CodeSnippet">
<CodeSnippet Format="1.0.0">
<Header>
<Title>GetSet</Title>
<Description>Inserts getter/setter shorthand code</Description>
<Shortcut>gs</Shortcut>
</Header>
<Snippet>
<Code Language="CSharp">
<![CDATA[{ get; set; }$end$]]>
</Code>
</Snippet>
</CodeSnippet>
</CodeSnippets>
Le raccourci utilise CTRL+R et alors CTRL+E. Appuyez sur ces touches après avoir écrit:
int loginID;
Ensuite, vous obtiendrez l'encapsulation suivante:
int loginID;
public int LoginID
{
get { return loginID; }
set { loginID = value; }
}