gpt4 book ai didi

.net - 什么是 VB.NET 等同于这种创建实例的方式?

转载 作者:行者123 更新时间:2023-12-05 08:45:57 25 4
gpt4 key购买 nike

在 C# 中,您可以像这样创建一个实例:

Custom mycustomelement = new Custom { ElenentName = "My Custom Element" };

我想知道如何在 Visual Basic 中创建这样的实例以及这种类型的创建实例的名称。

最佳答案

它叫做 object initializer , 和 corresponding VB.NET syntax是:

Dim mycustomelement As New Custom With { .ElementName = "My Custom Element" }

(注意属性名前的点(.),符合VB的With语句的语法。)


请注意,在使用 object initializer syntax for anonymous types 时,C# 和 VB 之间存在细微差别。 : 在 C# 中,所有属性都是不可变的;在 VB 中,它们是可变的,除非使用 Key 关键字进行初始化。

关于.net - 什么是 VB.NET 等同于这种创建实例的方式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70896475/

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