我有一个需要在 VB 中放入数组文字的 guid 列表。它们中的每一个都对应于我想在代码中记录的某个实体。在 C# 中,我会做这样的事情:
var guids = new[] {
Guid.Parse("70b11854-ac3e-4558-85d9-dc2451d7dce2"), // thing foo
Guid.Parse("dec3cc2c-9d22-4d7f-8293-8e584795211c"), // thing bar
};
我想在VB中做这样的事情:
Dim guids = {
Guid.Parse("70b11854-ac3e-4558-85d9-dc2451d7dce2"), ' thing foo
Guid.Parse("dec3cc2c-9d22-4d7f-8293-8e584795211c") ' thing bar
}
但是(多行)语句中间的注释是不合法的。有没有办法在VB中实现这种类型的注释?