gpt4 book ai didi

c# - Visual Studio 代码片段 : how to add logic in it?

转载 作者:太空狗 更新时间:2023-10-29 21:23:41 25 4
gpt4 key购买 nike

我制作了一个小代码片段来为 WPF 数据绑定(bind)创建一个属性:

private string property;
public string Property
{
get { return this.property; }
set
{
this.property = value;
this.OnPropertyChanged(() => Property);
}
}

在 Camel Case 中创建字段名称并在 Pascal Case 中重写属性非常麻烦。有没有办法只写字段,让代码段使用字段名称第一个字符大写来写入属性?

最佳答案

不幸的是,这种类型的逻辑在 Visual Studio 代码片段功能中不可用。必须输入两个名字是您能做的最好的事情。

这是您在创建代码片段时唯一可用的“功能”。 MSDN Code Snippet Functions

Resharper 等产品提供出色的代码片段(在 Resharper 中称为模板)功能,能够更改代码片段中其他替换项的大小写,以及许多其他有用的功能。 Resharper Template Info

例如,您可能会对这个宏感兴趣:

“第一个字符为小写的另一个变量的值”

关于c# - Visual Studio 代码片段 : how to add logic in it?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11672335/

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