Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有人可以告诉我 VB.Net 中与此 C# 代码等效的代码是什么吗?
new {name="value"}
这称为匿名类型,VB 等价物是:
New With {.Name = "value"}
该功能称为匿名类型。