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

link|improve this question

50% accept rate
4  
'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 '09 at 12:47
"with" actually existed well before VB. It exists in Pascal, for dealing with record types. Don't know if Pascal borrowed the idea from elsewhere. – JeffK Oct 29 '10 at 15:32
feedback

8 Answers

up vote 14 down vote accepted

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

link|improve this answer
2  
this is true. But if you have a class with methods that return 'this', then you can chain the methods together. – Ziplin Oct 29 '10 at 15:26
feedback

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

Animal a = new Animal()
{
    SpeciesName = "Lion",
    IsHairy = true,
    NumberOfLegs = 4
};
link|improve this answer
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#.

link|improve this answer
That comparison chart is awesome. I am working on transitioning to C# from VB and that is going to be very helpful. – BukHix May 11 '11 at 13:36
feedback

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

link|improve this answer
feedback

There is no equivalent, but I think discussing a syntax might be interesting!

I quite like;

NameSpace.MyObject.
{
    active = true;
    bgcol = Color.Red;
}

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.

/// <summary>
/// C# implementation of Visual Basics With statement
/// </summary>
public static void With<T>(this T _object, Action<T> _action)
{
    _action(_object);
}

Usage;

LongInstanceOfPersonVariableName.With(x => {
     x.AgeIntVar = 21;
     x.NameStrVar = "John";
     x.NameStrVar += " Smith";
     //etc..
});

EDIT: Interestingly it seems someone beat me to the punch, again, with this "solution". Oh well..

link|improve this answer
feedback

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

link|improve this answer
Nope, there wasn't. But, then again, there was no IDisposable either :-) – Dan F Jun 30 '09 at 12:42
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.

link|improve this answer
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.

link|improve this answer
1  
What's with the outer curlies? Sorry, but this isn't in any way close to equivalent. It just a bunch of calls to setters. – tomfanning Nov 11 '10 at 22:03
The outer braces set the scope of variable q. Provided that the object expression is a class rather than a struct, I think the VB.Net and C# code above are almost precisely equivalent. The former statement is an example of how a with statement might be used, and the latter statement is a C# translation. The C# example uses a couple setters because that's what the arbitrarily-chosen VB.net example does. The essential point is that the "with" is equivalent to defining a temporary variable and then using it any time a period is used with no preceding identifier. – supercat Nov 13 '10 at 17:55
feedback

Your Answer

 
or
required, but never shown

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