1
vote
5answers
62 views
How to name a method that has an out parameter?
Hi,
What is the common preference to name a method that has an out parameter inside?
Usually I use Get as a prefix to mention that the method returns a value (like GetMyBusiness) …
0
votes
7answers
221 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
2answers
24 views
why the session in iis automatically log out ?
I used iis6, and when i called a function Directory.delete(), the all the session relate this website will be logged out.
and i debugged the website, i found no exception.
any one …
1
vote
7answers
158 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
1answer
25 views
XPConnect (Firefox) - how to get value out of object
I'm trying to create a read from clipboard javascript function, and it's generally working, but I can't seem to extract the actual string from the object I create with the out para …
0
votes
0answers
27 views
mysql cluster auto increment out of sync
Hi All,
I have two mysql cluster data nodes as Master and slave. But after certain number of rows there is difference between two auto_increment values from one node to another.
…
0
votes
2answers
26 views
is there a Best Practice or industry standard for the length of “time out” for web pages for Ecommerce businesses with website containing Personal Identity Information?
is there a Best Practice or industry standard for the length of "time out" for web pages for Ecommerce businesses with website containing Personal Identity Information?
0
votes
1answer
84 views
jQuery droppable out event fails to trigger?
$(".LWdrop").droppable({
accept: ".LW",
drop: function(event, ui){
ui.draggable.addClass("LWactive");
$(this).droppable('option', 'ac …
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 …
5
votes
10answers
328 views
When should I use out parameters?
I don't understand when an output parameter should be used, I personally wrap the result in a new type if I need to return more than one type, I find that a lot easier to work with …
2
votes
1answer
216 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 …
4
votes
3answers
168 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 ); …
6
votes
6answers
1k views
C# out parameter performance
Do out parameters in C# have any performance implications I should know about? (Like exceptions)
I mean, is it a good idea to have a method with an out parameter in a loop that wi …
4
votes
1answer
321 views
In C# 4.0 why can’t an out parameter in a method be covariant?
Given this magical interface:
public interface IHat<out TRabbit>
{
TRabbit Take();
}
And this class hierarchy:
public class Rabbit { }
public class WhiteRabbit : Rab …
11
votes
6answers
2k views
C# 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)
…
