VB.NET では、ブロック内で使用されているオブジェクトにアクセスできる「this」キーワードのようなものがあるかどうか疑問に思っていWith <obj>
ますEnd With
。例えば:
With myObj
.thisMethod()
someFunction(<this>) ' Where "<this>" refers to myObj
.thatMethod()
End With
可能であれば、With ブロックを離れずに myObj を渡したい場合に便利です。