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

What is VB.NET equivalent of this way to create instance?

在 C# 中,您可以创建这样的实例:

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

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

它被称为 object initializer, and the 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 关键字进行初始化。