Top "Byref" questions

VBA byref argument type mismatch when calling a function from a function being called

hope someone can help. This is a simplification of a set of code I'm working with. I'm calling a function, …

vba function types mismatch byref
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 …

vb.net string byref byval
Are 'by ref' arguments in WCF bad or good?

I've recently seen a WCF service declaring operation contracts with by ref arguments. I don't know why this design decision …

wcf web-services arguments byref
Pass by Ref Textbox.Text

I currently have something that I want to pass a textbox.text by ref. I don't want to pass the …

c# byref
How to reference a class variable from another class in vb.net

I have the following (simplified to make this easy to read) first class: Class MainWindow Private mFile As myFile 'myFile …

vb.net byref
Passing in variables ByRef in Actionscript 3

Is it possible to pass a parameter to a method ByRef (or out etc) in ActionScript 3? I have some globally …

apache-flex actionscript-3 adobe byref
By Ref parameters in VB.NET and C#

I have question related passing parameters byRef, I have VB.NET based class library in which some functions are defined …

c# vb.net pass-by-reference byref
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 …

c# vb.net reference-type byref byval
Can you have "ByRef" arguments in AS3 functions?

Any idea how to return multiple variables from a function in ActionScript 3? Anything like VB.NET where you can have …

actionscript-3 byref args