The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
28 views

term being added to a string without instruction to do so

I have a function which sets a variable for the current user. The variable name is prefixed with the name of the module - basically, the way the application is set up, Client is a class, Server is a ...
0
votes
0answers
14 views

Silverlight 5, ByRef triggers OnPropertyChange, ByVal doesn't?

VB.NET in an SL5 project. I was trying to debug a problem with my MVVM where a OnPropertyChanged was being triggered because I passed in an object (objSize) ByRef and then assigned a local property ...
0
votes
3answers
59 views

Using ByRef and ByVal

I'm fairly new to programming and I was told that I should be passing things using ByRef and ByVal, but when I do so, I get an error saying: Error 3 Method 'Private Sub Activate_Click(ByRef ...
2
votes
1answer
82 views

converting vb.net to c#- optimise parameter passing

I want to move a vb.net app to c#. The vb.net app has thousands of byref parameters that should be byval. Does anybody know a way to automate checking whether each parameter passing approach can be ...
0
votes
1answer
336 views

Declare a function to take byref and byval argument

What do you do (in recent PHP) when you want to call a function with byref arguments only some of the time? function blah_byval ($arg) { /* some code */ } function blah_byref (&$arg) { /* same ...
0
votes
1answer
147 views

use caption of pressed button from main form in query of other form

My problem is: Main form has 9 command buttons and continuous subform. Click on some button open other form with text box for entering quantity and two command buttons. When click on the first ...
3
votes
2answers
2k views

Why is it not necessary to indicate ByVal/ByRef anymore?

I just installed Visual Studio 2010 Service pack (proposed on Windows Update), and I can see a new feature on the "intellisense" that means when I write a Function or Sub in VB.NET it doesn't ...
1
vote
3answers
333 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, ...
0
votes
2answers
143 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
423 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 ...
1
vote
2answers
252 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; ...
4
votes
5answers
2k 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 = ...
3
votes
3answers
6k 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 ...
0
votes
3answers
804 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: ...
2
votes
3answers
2k 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 ...
8
votes
3answers
7k 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 ...
1
vote
1answer
2k 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
136 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 ...
0
votes
2answers
2k 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
713 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 ...
4
votes
6answers
5k 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
2k 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 ...
17
votes
7answers
12k 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 ...
11
votes
7answers
7k 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 ...