vote up 6 vote down star

I know VB.Net and am trying to brush up on my C#. Is there a With block equivalent in C#?

Thanks

flag

I know there is a dupe of this on SO, but for the life of me I can't figure out a search query that can find it. – ctacke Jan 26 at 23:14
@ctacke: I thought "can't be that hard..." , then spent 10 minutes unsuccessfully trying to find it!.... – Mitch Wheat Jan 27 at 10:04

11 Answers

vote up 19 vote down check

No, and thank goodness there isn't.

link|flag
2  
+1 for the additional sentiment. – Jeff Yates Jan 26 at 23:22
Amen to that. +1 – ocdecio Jan 26 at 23:30
+1, I'd rather have code readability. – RexM Jan 26 at 23:44
With does not reduce readability IMHO – ggf31416 Jan 26 at 23:52
1  
-1 for the snobbery – RS Conley Jan 27 at 13:18
show 3 more comments
vote up 3 vote down

No there is not.

link|flag
-1: there is already an accepted answer with same response. This seems to be polluting the answer... – Sung Meister Apr 28 at 2:56
vote up 4 vote down

No, there is not.

link|flag
Jinx! Buy me a coke! :P – LFSR Consulting Jan 26 at 23:00
+1 to even out the score with LFSR Consulting ;) – Jeff Yates Jan 26 at 23:21
-1: there is already an accepted answer, this seems to be polluting the answer... – Sung Meister Apr 28 at 2:55
vote up 0 vote down

Thanks for the quick responses

link|flag
You should accept one of them – configurator Jan 26 at 23:02
Yes, please accept the answer that helped you most. – Jarrod Dixon Jan 26 at 23:07
vote up 3 vote down

You could use the argument accumulator pattern.

Big discussion about this here:

http://blogs.msdn.com/csharpfaq/archive/2004/03/11/87817.aspx

link|flag
This is a good alternative, and the pattern is nice for lots of reasons other than replacing "with". Another option is a utility method, like I describe here: stackoverflow.com/questions/601153/… – Gabe Moothart May 14 at 18:50
vote up -1 vote down

hmm. I have never used VB.net in any depth, so I'm making an assumption here, but I think the 'using' block might be close to what you want.

using defines a block scope for a variable, see the example below

using ( int temp = someFunction(param1) ) {
   temp++;  // this works fine
}

temp++; // this blows up as temp is out of scope here and has been disposed

Here is an article from Microsoft that explains a bit more


EDIT: yeah, this answer is wrong - the original assumption was incorrect. VB's 'WITH' is more like the new C# object initialisers:

var yourVariable = new yourObject { param1 = 20, param2 = "some string" };
link|flag
No, a using statement is very different - the point of a using statement is to dispose of a resource at the end of the block. It doesn't make referring to the value any shorter. – Jon Skeet Jan 26 at 23:46
Thanks Jon, always good to learn something new about another language, I suppose I should have taken heed of the old statement "Assume makes an ass out of u and me" - but I guess its only me looking bad in this case ;) – mlennox Jan 26 at 23:57
nope ... the initializer only works on initialization ... have a look at fluent interfaces! – dittodhole Jan 28 at 7:09
vote up 2 vote down

About 3/4 down the page in the "Using Objects" section:

VB:

With hero 
  .Name = "SpamMan" 
  .PowerLevel = 3 
End With

C#:

//No "With" construct
hero.Name = "SpamMan"; 
hero.PowerLevel = 3;
link|flag
vote up 4 vote down

Although C# doesn't have any direct equivalent for the general case, C# 3 gain object initializer syntax for constructor calls:

var foo = new Foo { Property1 = value1, Property2 = value2, etc };

See chapter 8 of C# in Depth for more details - you can download it for free from Manning's web site.

(Disclaimer - yes, it's in my interests to get the book into more people's hands. But hey, it's a free chapter which gives you more information on a related topic...)

link|flag
vote up 0 vote down

ever heard of a fluent-interface? ... that is really near to that ...

link|flag
vote up 3 vote down

This is what Visual C# program manager has to say: Why doesn't C# have a 'with' statement?

link|flag
vote up 1 vote down

As the Visual C# Program Manager linked above says, there are limited situations where the With statement is more efficient, the example he gives when it is being used as a shorthand to repeatedly access a complex expression.

Using an extension method and generics you can create something that is vaguely equivalent to a With statement, by adding something like this:

    public static T With<T>(this T item, Action<T> action)
    {
        action(item);
        return item;
    }

Taking a simple example of how it could be used, using lambda syntax you can then use it to change something like this:

    updateRoleFamily.RoleFamilyDescription = roleFamilyDescription;
    updateRoleFamily.RoleFamilyCode = roleFamilyCode;

To this:

    updateRoleFamily.With(rf =>
          {
              rf.RoleFamilyDescription = roleFamilyDescription;
              rf.RoleFamilyCode = roleFamilyCode;
          });

On an example like this the only advantage is perhaps a nicer layout, but with a more complex reference and more properties it could well give you more readable code.

link|flag
I don't really see the advantage of what your example shows. The original code (pre-lambda) is the [objectinstance].[property] = [value]. The lambda code is basically just changing the updateRoleFamily with rf. – Dan Appleyard May 28 at 14:15
Try it with a longer reference to the object instance and many more properties. In the above example you are simplifying updateRoleFamily to rf and setting two properties, which you are correct, isn't a big gain. If however your object instance is something like myDataStructure.GetButton(44), and you have to set ten properties it could make it more readable to use a lambda or set a local variable. Like the original VB With statement, it is only a little bit of syntactic sugar, that you can take or leave. – RTPeat May 29 at 9:11

Your Answer

Get an OpenID
or

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