D
djc
in vb there is a With construct. It supposedly speeds things up. By caching,
I assume, it eliminates having to travel several levels in a hierarchy using
the dot operator. Is there a C# equivalent of this? A quick look at VS help
only brought up VB stuff for it.
With ObjectVar
.this
.that
.whatever()
End With
I assume, it eliminates having to travel several levels in a hierarchy using
the dot operator. Is there a C# equivalent of this? A quick look at VS help
only brought up VB stuff for it.
With ObjectVar
.this
.that
.whatever()
End With