10
votes
10answers
834 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? …
0
votes
7answers
222 views
What is the purpose of the “out” keyword at the caller (in C#)?
When a C# function has an output parameter, you make that clear as follows:
private void f(out OutputParameterClass outputParameter);
This states that the parameter does not hav …
0
votes
1answer
34 views
[Oracle] Type reference scope
Hello,
I'm studying databases and am currently working on a object-relational DB project and I've encountered a small problem with the number of possible constraints in an object …
1
vote
7answers
163 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
Pass …
0
votes
9answers
160 views
C# Reference parameter passing
hi, 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 …
0
votes
1answer
14 views
Using a ref to pass GridView columns to a method
So I'm working on this VB to C# web application migration and came across an issue that I'm hoping there is an easy work around for. There's a webform that uses the GridView contro …
2
votes
3answers
74 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 == "Capa …
3
votes
3answers
129 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 …
2
votes
6answers
129 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, Cons …
1
vote
5answers
135 views
edit list inside foreach loop
I have an object with the following structure: (pseudocode)
class Client
{
- int ID
- int? ParentID
- string Name
- datetime CreateDate
- int ACClientID
- List <Client> Clie …
1
vote
2answers
89 views
Refering to a table in LaTeX
How can you refer to a table number such that you get Table 7 for instance?
Sample data
Taulu \ref{table:kysymys} lorem lorem ipsun.
\begin{table}
\label{table:kysymys}
\begin{t …
2
votes
2answers
114 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 = …
14
votes
11answers
3k 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 …
3
votes
7answers
335 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: …
2
votes
1answer
221 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 …
