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
| |||||||
feedback
|
|
C# doesn't have an equivalent language construct for that. | |||||
feedback
|
|
It's not equivalent, but would this syntax work for you?
| |||
|
feedback
|
|
There's no equivalent to With ... End With in c#. Here's a comparison chart for you that illustrates differences between vb and c#. | |||
feedback
|
|
There is no equivalent structure in C#. This is a VB6 / VB.Net feature. | |||
|
feedback
|
|
There is no equivalent, but I think discussing a syntax might be interesting! I quite like;
Any other suggestions? I cant imagine that adding this language feature would be difficult, essentially just a preprocessed. EDIT: I was sick of waiting for this feature, so here is and extension that achieves a similar behavior.
Usage;
EDIT: Interestingly it seems someone beat me to the punch, again, with this "solution". Oh well.. | ||||
|
feedback
|
|
I might be wrong but I don't think there is a "with ... end" equivalent in C# | |||
feedback
|
|
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. | |||
|
feedback
|
|
I think the equivalent of With SomeObjectExpression() .SomeProperty = 5 .SomeOtherProperty = "Hello" End With would be {
Var q=SomeOtherExpression();
q.SomeProperty = 5;
q.SomeOtherProperty = "Hello";
}
The only real difference is that in vb, the identifier doesn't have a name "q", but is simply a default identifier used when a period is encountered without any other identifier before it. | |||||||
feedback
|