Tagged Questions

14
votes
7answers
11k views

The VB.NET 'With' Statement - embrace or avoid?

At work, I'm frequently working on projects where numerous properties of certain objects have to be set during their construction or early during their lifetime. For the sake of convenience and ...
9
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 ...
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
2answers
102 views

Exiting from a VB.NET With block

In the following block of code, does VB.NET gracefully exit the With block if Var1 = 2? With MyObject .Property1 = "test" If Var1 = 2 Then Return True End If .Property2 = ...
2
votes
4answers
1k views

VB.NET Use With keyword on existing object?

Is it somehow possible to use the 'With' keyword on an existing object? I would like to do the following using LINQ to objects and can't seem to find a way: From m as Product in Me _ Select m With ...
2
votes
3answers
161 views

How to access the object itself in With … End With

Some code to illustrate my question: With Test.AnObject .Something = 1337 .AnotherThing = "Hello" ''// why can't I do this to pass the object itself: Test2.Subroutine(.) ''// ...
1
vote
2answers
47 views

How do I make an IF ELSE while using WITH END WITH statement?

How do I insert an If Else Statement here when I want to display the studentID and loginID if there is no student name/address. Sub ShowStudentInfo() Dim dt As DataTable = ...
0
votes
1answer
175 views

VB.NET Nested With statements from different scopes

I am wondering if this is possible. I have a List Table (lstTable) that is on the same form that I am trying to fill in with information from a public structure (ELEM_DATA). I understand nested with ...
0
votes
3answers
322 views

Can With/End With (VB.NET) be used when IDisposable is not available?

In cases where Using can't be used because IDisposable is not implemented, is the following code an OK practice for With/End With? Would this cause a memory leak or would it be better to set an ...
0
votes
3answers
196 views

Extended With-keyword in VB.NET

In my current project everyone names variables and methods after what they are and what they do. This is good for quickly understanding the code, but with a lot of long varible names comes some ...
0
votes
3answers
538 views

VB.NET 'With' statement performance?

What's the performance consequence using the 'With' keyword in vb.net instead of using reusing the instance name over and over?