vote up 3 vote down star

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

flag

49% accept rate
2  
'With' blocks are one of the most horrific parts of VB, and I really wish MS would ditch it. MS should replace it with something good, like concise autoproperties or something! – mgroves Jun 30 at 12:47

6 Answers

vote up 12 vote down check

C# doesn't have an equivalent language construct for that.

link|flag
vote up 1 vote down

There's no equivalent to With ... End With in c#.

Here's a comparison chart for you that illustrates differences between vb and c#.

link|flag
vote up 0 vote down

There is no equivalent structure in C#. This is a VB6 / VB.Net feature.

link|flag
vote up 0 vote down

I might be wrong but I don't think there is a "with ... end" equivalent in C#

link|flag
Nope, there wasn't. But, then again, there was no IDisposable either :-) – Dan F Jun 30 at 12:42
vote up 0 vote down

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.

link|flag
vote up 7 vote down

It's not equivalent, but would this syntax work for you?

Animal a = new Animal()
{
    SpeciesName = "Lion",
    IsHairy = true,
    NumberOfLegs = 4
};
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.