Tagged Questions
8
votes
7answers
1k views
Why is the with() construct not included in C#, when it is really cool in VB.NET?
I am C# developer. I really love the curly brace because I came from C, C++ and Java background. However, I also like the other programming languages of the .NET Family such as VB.NET. Switching back ...
7
votes
4answers
203 views
C#: how to define an extension method as “with” in F#?
F# has a convenient feature "with", example:
type Product = { Name:string; Price:int };;
let p = { Name="Test"; Price=42; };;
let p2 = { p with Name="Test2" };;
F# created keyword ...
4
votes
8answers
5k views
Equivalence of “With…End With” in c#?
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
2
votes
6answers
305 views
C# equivalent for VB keyword: with … end with?
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
...