Duplicar posibles:
Equivalence of “With…End With” in c#?¿Cuál es el equivalente de C# a la declaración With en VB?
Hubo una característica de VB que me gusta mucho ... la declaración With
. ¿Tiene C# algún equivalente? Sé que puede usar using
para no tener que escribir un espacio de nombre, pero está limitado a eso. En VB se puede hacer esto:
With Stuff.Elements.Foo
.Name = "Bob Dylan"
.Age = 68
.Location = "On Tour"
.IsCool = True
End With
El mismo código en C# sería:
Stuff.Elements.Foo.Name = "Bob Dylan";
Stuff.Elements.Foo.Age = 68;
Stuff.Elements.Foo.Location = "On Tour";
Stuff.Elements.Foo.IsCool = true;
dupe http://stackoverflow.com/questions/1063429/equivalence-of-with-end-with-in-c – Jimmy