【发布时间】:2010-11-12 06:50:21
【问题描述】:
一些代码来说明我的问题:
With Test.AnObject
.Something = 1337
.AnotherThing = "Hello"
''// why can't I do this to pass the object itself:
Test2.Subroutine(.)
''// ... and is there an equivalent, other than repeating the object in With?
End With
【问题讨论】:
标签: vb.net with-statement