gpt4 book ai didi

c# - 在 Visual Studio 中创建属性的快捷方式?

转载 作者:IT王子 更新时间:2023-10-29 03:29:00 25 4
gpt4 key购买 nike

我看到有些人在 C# 中创建属性的速度非常快,但他们是怎么做到的?

在 Visual Studio(目前使用 Visual Studio 2010)中可以使用哪些快捷方式来创建属性?

我正在使用 C#。

例如,

public string myString {get;set;}

最佳答案

您可以输入“prop”,然后按两次 Tab 键。这将生成以下内容。

public TYPE Type { get; set; }

然后你改变“TYPE”和“Type”:

public string myString {get; set;}

您还可以获得完整的属性,键入“propfull”然后按 Tab 键两次。这将生成字段和完整属性。

private int myVar;

public int MyProperty
{
get { return myVar;}
set { myVar = value;}
}

关于c# - 在 Visual Studio 中创建属性的快捷方式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3871270/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com