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 ...
11
votes
5answers
440 views

How to get a value through a out/ref parameter from a method which throws an exception?

this code outputs "out value". class P { public static void Main() { string arg = null; try { Method(out arg); } catch { } Console.WriteLine(arg); } ...
8
votes
3answers
3k views

Doesn't C# Extension Methods allow passing parameters by reference?

Is it really impossible to create an extension method in C# where the instance is passed as a reference? Here’s a sample VB.NET console app: Imports System.Runtime.CompilerServices Module Module1 ...
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 ...
6
votes
3answers
422 views

F# member constraints + ^a byref parameters

After some playing around F# member constraints feature and writing function like this: let inline parse< ^a when ^a : (static member Parse: string -> ^a) > s = (^a: (static member ...
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 ...
5
votes
2answers
420 views

How can I implement the same behavior as Dictionary.TryGetValue

So, given then following code type MyClass () = let items = Dictionary<string,int>() do items.Add ("one",1) items.Add ("two",2) items.Add ("three",3) member this.TryGetValue ...
4
votes
5answers
725 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
6answers
3k views

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 the input argument's variable modified (ByRef arguments)? Sub do (ByRef inout As ...
2
votes
5answers
113 views

Invoke generic method with the generic type from a System.Type

below is a code example and the question, please note that I can NOT use C# 4.0 and the dynamic keyword. static class TestClass { static void Main(string[] args) { Object o = ...
2
votes
1answer
63 views

Is a static member movable or fixed anyway?

In another topic, a nice guy told me by quote Eric Lippert's words:The significance of static has to do with the knowledge and certainties the compiler has at compile time of a certain ...
2
votes
3answers
604 views

Classic asp: Function call by reference doesn't work with an array

I have an array witch I pass to a function by reference to sort it. However, seems like the array is passed byval. Can anyone solve what's the problem? (Also sort workarounds accepted) 1) The ...
2
votes
1answer
675 views

VBA - Returning array from Property Get

If arrays are returned by reference, why doesn't the following work: 'Class1 class module Private v() As Double Public Property Get Vec() As Double() Vec = v() End Property Private Sub ...
2
votes
2answers
585 views

.NET Func(Of Tin, Tout) using a lambda expression with ByRef argument gives incompatible signature error

VB.NET 2010, .NET 4 Hello, Quick question. Why does this: Private [Function] As Func(Of Double, String) = Function(ByRef z As Double) z.ToString Give the following error: Nested function ...
2
votes
1answer
189 views

Understanding byref, ref and &

Well, I came to understand that F# is able to manage references (some sort of c++ like references). This enables the possibilities to change value of parameters passed in functions and also enables ...
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
4answers
309 views

Why is it legal to pass “Me” ByRef in VB.NET?

I was shocked just a moment ago to discover that the following is legal (the C# equivalent is definitely not): Class Assigner ''// Ignore this for now. Public Field As Integer ''// This ...
2
votes
1answer
257 views

Make object not pass by reference

I just found out the hard way objects are passed by reference in Javascript, for example: for(var layer = 0; layer < hudLayers['layers'].length; layer++){ // Store the to-be-calculated values ...
2
votes
1answer
130 views

Reflection: How to get the underlying type of a by-ref type

I was surprised to learn that "ref" and "out" parameters are not marked by a special attribute, despite the existence of ParameterInfo.IsOut, ParameterInfo.IsIn (both of which are always false as far ...
2
votes
2answers
340 views

Powershell / .Net: Get a reference to an object returned by a method

I am teaching myself PowerShell by writing a simple parser. I use the .Net framework class Collections.Stack. I want to modify the object at the top of the stack in place. I know I can pop() the ...
2
votes
5answers
1k views

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 whole textbox and I want the function to change the text along with returning the other variable. ...
2
votes
3answers
3k views

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 was taken (operations are void), but furthermore, I'm not able - from my ...
2
votes
1answer
245 views

When IQueryable is created from a linq query why is it not a “new” variable?

I am using the Entity Framework and have got a loop that looks at a set of People and using a foreach loop creates a query for the address of each person. As each address query is created it is added ...
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, ...
2
votes
2answers
228 views

different by ref question using a simple =

I have a variant on the by ref question. I know all about calling with the ref or our parameters and how it affects variables and their values. I had this issue with a DataTable and I want to know ...
2
votes
3answers
198 views

What is the use of the := syntax?

I'm a C# developer working on a VB.NET project, and VS keeps trying to get me to use the := thingie when I call a function with a ByRef parameter like so: While reader.Read() ...
1
vote
3answers
75 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
1answer
108 views

Does specifying the OutAttribute on ByRef internal methods currently do anything?

VB.NET doesn't have out parameters, but you can specify <Out()> ByRef on COM and P/Invoke methods to get the same effect for external methods. Does specifying the same on internal methods (i.e. ...
1
vote
1answer
47 views

PHP4 parameter by reference?

I'm quite used to PHP5 but have to write a PHP4 sync script, now I'm doing some digging to find the differences between PHP5 and 4. Problem is that I get alot of contradiction, some sites tell me that ...
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
2answers
1k views

Return object from Powershell using a parameter (“By Reference” parameter)?

I have one PowerShell (2.0) script calling another. I want to receive back not only the main output, but an additional object that I can use separately, e.g. to display a Summary Line in a message. ...
1
vote
1answer
177 views

Differences between address-of and ref operators

In my code I'm passing around some structures by reference, declaring them mutable and using the & symbol. The problem is that in some place the fields are corrupted (happens only in release mode) ...
1
vote
1answer
594 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
432 views

VB6 COM returns ADODB.Recordset in byRef Variant. How to retrieve in C#?

I'm trying to call this COM method: Public Function DoSomething(ByRef StringStuff As Variant, **ByRef Out_Data As Variant**) As Boolean Out_Data gets defined and populated in the method body as an ...
1
vote
1answer
962 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
4k views

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 scoped variables at the top of my class and my method will populate that variable if it's == ...
1
vote
5answers
624 views

Are primitive data types in PHP passed by reference?

In PHP, I'm frequently doing lots of string manipulation. Is it alright to split my code into multiple functions, because if primitive types like strings are passed by value I would be significantly ...
1
vote
2answers
2k views

Passing Classic ASP VBScript Parameters ByRef to COM c++

It's pretty simple. There's a c++ function that uses ByRef parameters to return three variables at the same time. STDMETHODIMP CReportManager::GetReportAccessRights(long lReportCode, VARIANT_BOOL ...
1
vote
1answer
826 views

Is there any way to deal with ParamArray values as byRef so they can be updated?

Sounds simple enough, but its not working. In this example, I want to set the values of 3 fields to equal a 4th. I could do something like this.... Dim str1 As String = "1" Dim str2 As String = "2" ...
0
votes
1answer
30 views

Updating SelectedItem in DataGrid ByRef and Retaining SelectedItem Behavior WPF

I have a datagrid with an Observable Collection of a custom object. The selectedItem binding is set to SelectedCustObject in my view model. I've wired up a property Changed handler so I can update ...
0
votes
1answer
106 views

How do you access an object by reference (not by value) in a jsp:include file?

a little back story: I am working on a file that got to be very large, eventually resulting in the following error: The code of method _jspService(HttpServletRequest, HttpServletResponse) is ...
0
votes
1answer
102 views

How do I get SingleOrDefault to return object by reference from a list?

Consider these lines of code: //prodProdGroup is a list within the itm object that I need to search. The items //within the list are of type ProductionCostCalcHelper. I need to find one //of ...
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
1answer
14 views

The Question of By Reference Recommended on Arrays?

This is something I needed to clear up awhile back. In PHP 5.3+, I wanted to ask if this improves performance on a very large array result? And do you have a way I can demonstrate the proof? ...
0
votes
1answer
265 views

'ByRef' parameter '<parametername>' cannot be used in a lambda expression

I'm using SharpZipLib to compress files. The library is wrapped in a plugin interface, in a separate DLL. I pass the plugin dll a ByRef parameter to keep track of the compression progress. ...
0
votes
5answers
116 views

Passing an object to a method and then calling an extenstion method on that object

I was working on a method yesterday and ran into something strange, here is dumbed down version of the code: Basically the problem is that the OrderBy applied in the Bar.PopulateList method is not ...
0
votes
1answer
210 views

VB.NET Pointer to value types

VB.NET 2010, .NET 4 Hello all, I'm by no means a good programmer and I'm just trying to wrap my head around some of this stuff, so please forgive me if this is a dumb question. I want the following ...
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
432 views

Python access an object byref / Need tagging

I need to suck data from stdin and create a object. The incoming data is between 5 and 10 lines long. Each line has a process number and either an IP address or a hash. For example: pid=123 ...

1 2