Hi I know that c# has using element....but as you know, using disposes object automatically... clearly, I want the equivalence of with......end with in vb6.0?
Merci
|
|
Hi I know that c# has using element....but as you know, using disposes object automatically... clearly, I want the equivalence of with......end with in vb6.0? Merci
|
||||
|
|
|
C# doesn't have an equivalent language construct for that. |
||
|
|
|
|
There's no equivalent to With ... End With in c#. Here's a comparison chart for you that illustrates differences between vb and c#. |
||
|
|
|
|
There is no equivalent structure in C#. This is a VB6 / VB.Net feature. |
||
|
|
|
|
I might be wrong but I don't think there is a "with ... end" equivalent in C# |
||
|
|
|
There is no such syntax construct. Similiar (like USING) exist, but there is no VB6- or Delphi-style WITH. This is done on purpouse, since nesting few with clauses makes code hard to understand. |
||
|
|
|
|
It's not equivalent, but would this syntax work for you?
|
||
|
|