Possible duplicate but I don't know right keywords in this case. In VB if you are going to change multiple properties of a single object, there's a With/End With statement :

Dim myObject as Object

// ' Rather than writing:
myObject.property1 = something
myObject.property2 = something2

// ' You can write:

with myObject
   .property1 = something
   .property2 = something2
   ...
End With

I know C# can do it when creating new object:

Object myObject = new Object { property1 = something, property2 = something2, ...};

But how to do that if myOject is already created (like what VB is doing) ?

link|improve this question

feedback

6 Answers

up vote 6 down vote accepted

You cannot do this in C#.

This feature is specific to VB and the closest you can come in C# is the object initializer like you describe.

link|improve this answer
feedback

How about this?

static class Extension
{
    public static void With<T>(this T obj, Action<T> a)
    {
        a(obj);
    }    
}

class Program
{
    class Obj
    {
        public int Prop1 { get; set; }
        public int Prop2 { get; set; }
        public int Prop3 { get; set; }
        public int Prop4 { get; set; }
    }

    static void Main(string[] args)
    {
        var detailedName = new Obj();
        detailedName.With(o => {
            o.Prop1 = 1;
            o.Prop2 = 2;
            o.Prop3 = 3;
            o.Prop4 = 4;
        });
    }
}
link|improve this answer
Make that an extension-method! Then you can do like detailedName.With(o => { o.Prop1 = 4 }) – Alxandr Nov 13 '10 at 21:29
1  
And btw. +1 for creativity :-) – Alxandr Nov 13 '10 at 21:29
@Alxandr - Good idea. – ChaosPandion Nov 13 '10 at 21:31
Note: If you use Cadenza, chock full of nice .NET extensions, you get a method that has exactly this implementation: gitorious.org/cadenza/cadenza/blobs/master/src/Cadenza/Cadenza/… – John Feminella Nov 13 '10 at 21:59
feedback

If you're trying to avoid lots of typing you can give your object a shorter name:

var x = myObject;
x.property1 = something;
x.property2 = something2;
link|improve this answer
Yeah, and to take it a step farther you can even do using(var x = myObject) {/*newline*/x.property1=something;} – Alxandr Nov 13 '10 at 21:25
2  
@Alxandr: Very bad idea, that will call Dispose at the end of the block (and won't even compile for types that don't implement IDisposable). – Ben Voigt Nov 13 '10 at 21:26
Oo. Good point. My bad. I just thought it disposed of the "x" variable, but that beeing a reference could be fatal :-P – Alxandr Nov 13 '10 at 21:27
If you want the variable to go out of scope when you are done you can just surround the code in curly braces to create a new scope. – Mark Byers Nov 13 '10 at 21:28
feedback

Why doesn't C# have VB.NET's 'with' operator?

Many people, including the C# language designers, believe that 'with' often harms readability, and is more of a curse than a blessing. It is clearer to declare a local variable with a meaningful name, and use that variable to perform multiple operations on a single object, than it is to have a block with a sort of implicit context.

by @Jon Skeet

link|improve this answer
1  
...And other people believe that VB's "with" statement is a useful feature which offers some semantics that are not as conveniently achieved via other means. – supercat Aug 26 '11 at 16:33
feedback

VB.NET includes some of VB6's design flaws for the sake of backward compatibility. While Javascript has the same design flaw (indeed an even worse one, as its with leads to more ambiguous constructs), most other C-syntax languages don't, so there's no backward-compatibility benefit in adding it to C#.

link|improve this answer
Actually there is a distinct advantage to having with in JavaScript. It allows you to introduce a new scope to your functions! – ChaosPandion Nov 14 '10 at 0:04
The "With" statement in VB, when used with structures, offers semantics that are not conveniently available in C. Given that VB's "With" uses a leading period to avoid ambiguity, I'm not sure why you regard it as a design flaw? – supercat Aug 26 '11 at 16:22
feedback

If the "with" expression is a class type, the "With" statement is equivalent to creating a new temporary variable of that type, initialized to the "With" expression, and preceding each leading "." with that variable. If it is a structure type, however, things are more complicated. Consider the code (obviously not the way one would normally write something, but written as it is to make a point:

  With MyPoints(N) ' Array of Point
    N=SomeNewValue
    .X = MyPoints(N).X
    .Y = MyPoints(N).Y
  End With

The "With" statement effectively latches a reference to MyPoints(N). Even if MyPoints is changed to some other array, or N is changed, the latched reference will still point to the same element of the same array as it did when the With statement was executed. If one declared a local variable P of type Point and grabbed MyPoints(N), and then write to P.X and P.Y, the writes would only hit the local copy P, rather than updating the array. To achieve similar semantics in C#, one would have to either use local variables to hold both MyPoints and N, or else place the contents of the With statement within an anonymous function which has a ref parameter of type Point. To avoid having to create a closure at run-time, the anonymous function should also accept, probably by reference, any local variables it will need from the outer scope.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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