Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

86
votes
14answers
33k views

Difference between ref and out parameters in .NET

What is the difference between ref and out parameters in .NET? What are the situations where one can be more useful than the other? Can anybody illustrate with a code snippet where one can be used and ...
65
votes
11answers
23k views

Whats the difference between the 'ref' and 'out' keywords?

I'm creating a function where I need to pass an object so that it can be modified by the function. What is the difference between: public void myFunction(ref MyClass someClass) and public void ...
33
votes
4answers
6k views

Assigning out/ref parameters in Moq

Is it possible to assign an out/ref parameter using Moq (3.0)? I've looked at using Callback(), but Action<> does not support ref parameters because it's based on generics. I'd also preferably ...
13
votes
10answers
2k views

In C#, where do you use “ref” in front of a parameter?

There are a number of questions already on the definition of "ref" and "out" parameter but they seem like bad design. Are there any cases where you think ref is the right solution? It seems like you ...
10
votes
6answers
373 views

Ref Abuse: Worth Cleaning Up?

I have inherited some code that uses the ref keyword extensively and unnecessarily. The original developer apparently feared objects would be cloned like primitive types if ref was not used, and did ...
8
votes
6answers
121 views

C# - Unsubscribe from delegate passed through ref keyword to the subscription method?

I've got the following class: public class Terminal : IDisposable { readonly List<IListener> _listeners; public Terminal(IEnumerable<IListener> listeners) { ...
8
votes
3answers
2k views

C# Cannot use ref or out parameter inside an anonymous method body

I'm trying to create a function that can create an Action that increments whatever integer is passed in. However my first attempt is giving me an error "cannot use ref or out parameter inside an ...
8
votes
3answers
928 views

why iterator methods can't take either 'ref' or 'out' parameters?

I tried this earlier today: public interface IFoo { IEnumerable<int> GetItems_A( ref int somethingElse ); IEnumerable<int> GetItems_B( ref int somethingElse ); } public class ...
6
votes
3answers
421 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 ...
6
votes
5answers
249 views

“ref” keyword and reference types

someone in my team stumbled upon a peculiar use of the ref keyword on a reference type class A { /* ... */ } class B { public void DoSomething(ref A myObject) { // ... } } ...
6
votes
2answers
4k views

\ref Chapter Name in LaTeX

Is it possible to use \ref{chap:conclusion} to refer to the actual name of the chapter instead of the chapter counter in LaTeX? So that I can do this: See the \ref{chap:conclusion} chapter for more ...
5
votes
3answers
179 views

What are the 'ref' and 'sealed' keywords in C++?

I've just seen some (presumably) C++ code which sports two "keywords" unknown to me (I'm assuming keywords but, since I have no context, they may be simple #define things). They also don't seem to ...
5
votes
3answers
215 views

const ref and rvalue in D

Code struct CustomReal { private real value; this(real value) { this.value = value; } CustomReal opBinary(string op)(CustomReal rhs) if (op == "+") { return ...
5
votes
6answers
197 views

string type as an argument in C# function

string type in C# is a reference type, and passing a reference type argument by value copies the reference so that I don't need to use the ref modifier. However, I need to use ref modifier for ...
5
votes
1answer
2k views

C# - Delegate with ref parameter

Is there any way to maintain the same functionality in the code below, but without having to create the delegate? I'm interfacing with a 3rd-party API that contains a number of various ...
5
votes
7answers
1k views

Are ref and out in C# the same a pointers in C++?

I just made a Swap routine in C# like this: static void Swap(ref int x, ref int y) { int temp = x; x = y; y = temp; } It does the same thing that this C++ code does: void swap(int *d1, ...
5
votes
5answers
3k views

When to use ref and when it is not necessary in C#

I have a object that is my in memory state of the program and also have some other worker functions that I pass the object to to modify the state. I have been passing it by ref to the worker ...
4
votes
4answers
90 views

How to save a ref variable for later use?

So this works.. public MyClass(ref Apple apple) { apple = new Apple("Macintosh"); // Works fine } But is it possible to do something like this? private Apple myApple; public MyClass(ref Apple ...
4
votes
3answers
124 views

Get a reference to a struct inside array

I want to modify a field of a struct which is inside an array without having to set entire struct. In the example below, I want to set one field of element 543 in the array. I don't want to have to ...
4
votes
1answer
128 views

Replace the ref of a parameter without using the ref keyword (using IL)

I am looking to be able to replace the object reference of a parameter without having to use the ref keyword. The reason that I am avoiding using ref is to preserve collection initializer invocation ...
4
votes
4answers
152 views

Passing by 'ref' - c#

Much to my dismay, the follow code wont compile. It will however compile if I remove the ref keyword. class xyz { static void foo(ref object aaa) { } static void bar() { ...
4
votes
1answer
81 views

How to test a ref condition in perl?

G'Day, I'm trying to unit test a function that uses a statement like: unless($this->_doc_type eq ref($this->_doc_instance)) { # Do something } No matter how I mock my objects, you ...
4
votes
3answers
166 views

ref for variables not parameters in functions

Suppose I have a Person class and have the following: Person A = new Person("Tom"); Person B = A; Is there a way I can change it so that if I assign a new Person to B, B = new Person("Harry"), A ...
4
votes
4answers
182 views

Trouble using the ref keyword. Very newbie question!

Here's my class: public class UserInformation { public string Username { get; set; } public string ComputerName { get; set; } public string Workgroup { get; set; } ...
4
votes
3answers
804 views

Alternatives to GCC's new atomic integer operations

GCC's recent support for atomic operations (as described here) is great, and is 90% of what we need. Unfortunately, some of our products still need to run on Windows and so we need atomic integer ...
4
votes
2answers
304 views

Why are ref parameters not contravariant?

This works: EndPoint endPoint = new IPEndPoint(_address, _port); _socket.ReceiveFrom(buffer, 0, 1024, SocketFlags.None, ref endPoint); But this does not: IPEndPoint endPoint = new ...
4
votes
2answers
324 views

Clojure Vector of Refs

What's the simplest way to create a vector of distinct refs? Using (repeat 5 (ref nil)) will return a list, but they will all reference the same ref: user=> (repeat 5 (ref nil)) (#<Ref@16ef71: ...
4
votes
4answers
4k views

C# 'ref' keyword, performance

If you have a Bitmap object that needs to be passed to numerous methods (about 10), and finally to an event where it shall finally be disposed of after its used, would it be (performance wise) ...
4
votes
2answers
912 views

Latex: hyperref to individual longtable rows

I have a few longtables that stretch several pages and I want to use pageref and hyperref to link to these rows. But whatever I try, the links always refer to the start of the table. When I look into ...
3
votes
3answers
47 views

How do I modify a field on a collection of objects I pass in

I am trying to do the following... (Foo is a class) void Main() { var foos = ... DoSomeWork(foos); // I want all foos to have Bar set to 42 } public static void ...
3
votes
7answers
104 views

Why is list when passed without ref to a function acting like passed with ref?

If I did not get this terribly wrong, this behaviour is strange for me. Rather than explaining, I'll post a sample code below and please tell me why does I get output x and not y. private void ...
3
votes
1answer
71 views

Properties and ref return values in D

Testing the following in D import std.stdio; struct S { int _val; @property ref int val() { return _val; } @property void val(int v) { _val = v; writeln("Setter called!"); } } void ...
3
votes
3answers
122 views

C# - Ref type comparison to pointers confusion?

I am reading Jeffrey Richters CLR via C#, and in it he says with ref parameters the reference itself is passed by value. This makes sense to me and seems analagous to pointers. i.e. in C if I pass a ...
3
votes
1answer
191 views

Boxing and unboxing when using out and ref parameters

Does boxing/unboxing occur when a method accepts an out/ref parameter of a ValueType?
3
votes
4answers
183 views

Using variables as value and not as reference

I'm having some troubles using Session Variables as they are being used as Reference and I want to use them as value. I got to this debuging my solution and I created something like: DataTable dt = ...
2
votes
3answers
60 views

Is a struct boxed when passed to a method using the ref keyword?

Does anyone know if boxing occurs when a struct is passed to a method using the ref keyword i.e. struct Test { public int Value; } static void Main() { Test test = new Test(); ...
2
votes
2answers
99 views

Mutable states in F# object expressions

I would like to have a mutable state in an F# object expression. The first approach is to use ref cells as follows: type PP = abstract member A : int let foo = let a = ref 0 { new PP ...
2
votes
3answers
139 views

`ref` vs. `mutable` assignment operator using F#

Consider the following code: let mutable a = 0. let b = ref 0. a <- // works printfn "%A" a 4. + 8. b := // does not work printfn "%A" a 4. + 8. b := ( // works printfn "%A" a 4. + ...
2
votes
1answer
216 views

powershell: how to write-host value from [ref] variable

I'm new to Powershell and I'm trying to work out how to print the value of a [ref] variable from within a function. Here is my test code: function testref([ref]$obj1) { $obj1.value = $obj1.value + ...
2
votes
7answers
316 views

c# static method with ref parameter - a good idea?

I recently refactored some code and now have a static utility class with a method like so: const int x = 1; public static string doWork(ref DataTable dt) { decimal total = 0; foreach (DataRow ...
2
votes
4answers
79 views

What to pass for unneeded ref variables?

I'm working with a GIS based math library that wraps lower C/C++ code in C#. Many of the parameters are pass by reference for the sake of receiving multiple outputs. If I only want some of the ...
2
votes
2answers
142 views

Syntax for mocking a method with a ref argument

I have the problem that I can't mock a method that has a ref argument. The signature of the method I want to mock away is as follows: class ContractRepository ... public long GetValueAndIncrement(ref ...
2
votes
1answer
1k views

managed C++ ref class

any good site or explanation on what is a ref class and when to declare a class to be a "ref class" the explanation on msdn wasn't enough for me :( base_type(optional) A base type. A ref class ...
2
votes
7answers
258 views

Example of practical of “ref” use

I am struggling how to use "ref" (to pass argument by reference) in real app. I would like to have simple and mainly meaningful example. Everything I found so far could be easily redone with adding ...
2
votes
1answer
201 views

Ocaml self-reference

I've created type t = Test of int * t ref How to create any object of type t?
2
votes
3answers
140 views

c# ref keyword… Am i passing my value correctly?

Is this a valid value for this c# class default constructor, public class SMSCOMMS { public SMSCOMMS(ref string COMMPORT) { SMSPort = new SerialPort(); SMSPort.PortName = COMMPORT; ...
2
votes
7answers
919 views

Using REF & OUT keywords with Passing by Reference & Passing by Value in C#

Here is what I understand so far: PASS BY VALUE Passing by value means a copy of an argument is passed. Changes to that copy do not change the original. PASS BY REFERENCE Passing by reference ...
2
votes
9answers
604 views

C# Reference parameter passing

i have a piece of code that isn't working, i'd appreciate any help you guys can provide me the code below is generating an exception ... but i'd think it shouldn't, unless i'm misinterpreting the ref ...
2
votes
3answers
297 views

Is it possible in C# to access an object's fields using field names generated at runtime

Here is what I mean: I need to be able to substitute this ugly looking C# code: if (attribute.Name == "Name") machinePool.Name = attribute.Value; else if (attribute.Name == "Capabilities") ...
2
votes
6answers
841 views

Why I need to use ref keyword in both declaration and Call?

Duplicate of: What is the purpose of the “out” keyword at the caller? Why I need to use 'ref' keyword in both declaration and Call. void foo(ref int i) { } For example, Consider above function. ...

1 2 3