Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
7answers
7k views

Which is faster? ByVal or ByRef?

In VB.NET, which is faster to use for method arguments, ByVal or ByRef? Also, which consumes more resources at runtime? (RAM) Edit: I read through this question, but the answers are not applicable ...
8
votes
8answers
3k views

Best Practice: ByRef or ByVal? in .Net

What are the things to consider when choosing between ByRef and ByVal. I understand the difference between the two but I don't fully understand if ByRef saves resources or if we even need to worry ...
5
votes
3answers
2k views

How to 'do' ByVal in C#

As I understand it, C# passes parameters into methods by reference. In vb.net, you can specify this with ByVal and ByRef. The default is ByVal. Is this for compatibility with vb6, or is it just ...
4
votes
5answers
723 views

Passing string ByVal in VB.NET AND C#

So strings are reference types right? My understanding is a reference to the string in the heap is passed even when you pass the string ByVal to a method. Sooo..... String myTestValue = ...
2
votes
3answers
1k views

ByRef vs ByVal Clarification

I've read a lot on this, but am having a hard time thinking through this tonight. (Maybe it's the hydrocodone... just had a root canal. Anyway...) I'm just starting on a class to handle client ...
2
votes
5answers
3k views

VB.NET: If I pass a String ByVal into a function but do not change the string, do I have one or two strings in memory?

I know strings are immutable, so the minute you change a string reference's value .NET makes a brand new string on the heap. But what if you don't change the value of a string reference; rather, ...
1
vote
3answers
73 views

VB.Net, EventArgs, ByRef and ByVal

In VB.Net, I have an object named WorkflowButtonEventArgs that inherits from System.EventArgs. The WorkflowButtonEventArgs class contains two ByRef Properties. These are objects that are in memory, ...
1
vote
2answers
111 views

In .NET if you pass a struct into a method with an interface parameter does it box the value?

From a simple test I can see that if you pass the struct into the method it is passed by value but if you first assign it to an interface it is passed by reference. interface IFoo { int Val { get; ...
1
vote
1answer
593 views

ByRef vs ByVal performance when passing strings

Reading http://stackoverflow.com/questions/408101/which-is-faster-byval-or-byref made me wonder whether the comments in there did apply to Strings in terms of performance. Since strings are copied ...
1
vote
1answer
961 views

Switching Byref to Byval on method calls VB.NET

Switching Byref to Byval on method calls I have many warnings raised due to: "Implicit conversion from xxxx to yyyy in copying the value of 'ByRef' parameter zzzz back to the matching argument." My ...
1
vote
2answers
99 views

Instantiate Local Variable By Value?

I sort of understand why this is happening, but not entirely. I have a base class with a Shared (Static) variable, declared like so: Public Shared myVar As New MyObject(arg1, arg2) In a method of a ...
1
vote
3answers
1k views

Pass anonymous function by value in javascript?

I have a function that accepts an anonymous function as an argument and sets it to a variable (scoped) for reference. I then try to execute another function with that reference but it obviously fails ...
0
votes
2answers
64 views

Visual Basic Event Handler

I am trying to learn Visual Basic and am working through a text book that my son used for a class. Each time I create an event handler by double clicking on the design page, the code that ...
0
votes
3answers
113 views

cache being modified instead of local variable (pass by ref)

I am writing a .net c# application. I retrieve some data from an xml file, cache the data to the .net cache and return it from my method. I perform some processing on the data and return it another ...
0
votes
4answers
389 views

Using ParamArray ByRef

Is there any way to use ParamArray ByRef? Barring that, it there a workaround that accomplishes the same thing? I could do some overloads, but I am trying to avoid the clunkiness. Background: ...
0
votes
2answers
1k views

Update properties of objects in an IEnumerable<>

I am working on some software that should be used for a special type of experiment. The experiments are performed using: 1) A "Chip" (basically an XY grid of known dimensions). 2) Each Chip contains ...
0
votes
2answers
531 views

How to make absolute cell ref in loop work and skipping over a column in loop?

I ALMOST got my code working but there are still two things wrong with it (two major things anyway). 1) The absolute cell ref. is not working as it does in Excel. I want for example $A5 but instead ...