Как получить доступ к самому объекту в С ... Конец С

Некоторый код для иллюстрации моего вопроса:

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

Ответы на вопрос(4)

Ваш ответ на вопрос