Tagged Questions

out is a keyword specified for the method parameters, which causes these parameters to be passed by reference to the called method and the caller sees the modified value.

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 ...
12
votes
4answers
136 views

Out parameters and exceptions

Say I have the following code: static void Fjuk(out string str) { str = "fjuk!"; throw new Exception(); } static void Main(string[] args) { string s = ...
10
votes
2answers
645 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 : Rabbit { } I can now ...
9
votes
6answers
4k 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 will run a couple of ...
9
votes
6answers
760 views

Is there any way of just not bothering with an out parameter in c#?

I'm making a call: myResult = MakeMyCall(inputParams, out messages); but I don't actually care about the messages. If it was an input parameter I didn't care about I'd just pass in a null. If it ...
8
votes
3answers
926 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 ...
7
votes
3answers
999 views

How to declare a generic delegate with an out parameter

Func<a, out b, bool>, just don't compile, how to declare that i want the second parameter be an out one? I want to use it like this: public class Foo() { public Func<a, out b, ...
7
votes
10answers
846 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 than out. I have ...
5
votes
4answers
521 views

Returning two values, Tuple vs 'out' vs 'struct'

Consider a function which returns two values. We can write: // Using out: string MyFunction(string input, out int count) // Using Tuple class: Tuple<string, int> MyFunction(string input) // ...
4
votes
4answers
90 views

Difference between pointer-to-pointer vs reference-to-pointer (C++)

I have a bit of COM code that uses interface pointers. The original author of the code implemented functions that return an interface pointer like this: HRESULT Query ( IN BSTR sQuery, OUT ...
3
votes
4answers
185 views

C# and VB.Net out parameters

I've got a project in c# which is making use of another project written in vb.net. I am currently able to modify both. I've got a method in the VB project like: Public Sub MethodName(ByVal ...
3
votes
2answers
163 views

C# - How can I pass a reference to a function that requires an out variable?

public class Foo { public void DoFoo() { int x; var coll = TheFunc("bar", out x); } public Func<string, int, ICollection<string>> TheFunc { get; set; } } ...
3
votes
2answers
725 views

How to call a .net method with an output parameter?

I just want to call the GenerateScript method of Microsoft.Data.Schema.ScriptDom.Sql.Sql100ScriptGenerator from PowerShell. #C public void GenerateScript( IScriptFragment scriptFragment, out ...
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
5answers
2k views

Clickout in jquery

What is the easiest way to do a clickout in jquery Where a div box hides if clicked anywhere outside it.
3
votes
4answers
464 views

C# out parameter value passing

I am using contactsreader.dll to import my gmail contacts... One of my method has out parameter... I am doing this, Gmail gm = new Gmail(); DataTable dt = new DataTable(); string strerr; ...
3
votes
3answers
6k views

Zoom in and zoom out using AS3

you all know: "right click -> zoom in or out" in flash file, well, I need to do this but using, for example, clicking a button. Is this possible using only AS3 code? Thx!
3
votes
4answers
3k views

How to enable the video output on your iPad app?

Just found out that the video output of the iPad is not a system level functionality, but that it needs to be explicitly build in into each app. Is there somebody who has any experience with this, who ...
3
votes
4answers
1k views

Nullable List<> as out parameter

Is this possible? private void Test(out List<ExampleClass>? ExClass) { } A nullable List<> that is also an out parameter?
2
votes
3answers
85 views

Why do C# out generic type parameters violate covariance?

I'm unclear as to why the following code snippet isn't covarient? public interface IResourceColl<out T> : IEnumerable<T> where T : IResource { int Count { get; } T this[int ...
2
votes
0answers
29 views

Method invocation with out parameter and no additional variable? [closed]

Possible Duplicate: Null out parameters in C#? In some cases while calling a certain method I am not interested in all values in the method signature. Then I use either default or null ...
2
votes
2answers
71 views

std::out_of_range error

I am working on the following code in opencv in Linux Ubuntu. x_captured and y_captured are "int" type vectors. Size of both vectors is 18. for (int i=0;i<=x_captured.size();i++) { for (int ...
2
votes
4answers
53 views

When is the variable from the calling scope altered, if using out parameters?

I cannot try rigth now, but I am sure, someone knows: void func(out MyType A) { A = new MyType(); // do some other stuff here // take some time ... and return } When I call this in ...
2
votes
3answers
69 views

Problem with breaking out Jquery each loop?

I have some html element like these: <table id="myTable"></table> <select name="mySelect"> <option value="1">1</option> <option ...
2
votes
3answers
76 views

Proper way of getting lots of data from a method

In an MVC project, in my controller, I would like to get data to use in the view. Lets say I want to retrieve a List<string> and an int. My controller's method declaration is similar to this. ...
2
votes
1answer
108 views

generic out value assignment inside try block

I am trying to compile the following code: public static void RequireOrPermanentRedirect<T>(this System.Web.UI.Page page, string QueryStringKey, string RedirectUrl, out T parsedValue) { ...
2
votes
2answers
995 views

Change flash player audio output device

Is there a way to change flash players audio output device? if not, is there a swf player who has this possibility? Thanks!
2
votes
1answer
728 views

How do I access video output capabilities on iOS?

Applications such as Netflix have the ability to play video out of the dock connector when the video connector is hooked up. Do applications have the ability to put arbitrary data on video out? Or ...
2
votes
3answers
284 views

How do I stop mouse_out firing when mouse click fires

I have buttons that have mouse_over, mouse_out and CLICK events. But when I click the button it takes me to another frame and the mouse_out event tried to fire. How do I stop that happening? ...
2
votes
2answers
420 views

jQuery fadein fadeout repeatedly

I have a image and in it wants to be fadein fadeout automatically when the document is loaded and it should be done till the document is closed .. help me plzz
2
votes
2answers
530 views

How to redirect javax.mail.Session setDebugOut to log4j logger?

How to redirect javax.mail.Session setDebugOut to log4j logger? Is it possible to redirect only mailSession debug out to logger? I mean, there are solutions like link text which reassigns all ...
2
votes
2answers
348 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 have ideas on this ? ...
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
2answers
931 views

How can I indent cout output?

I'm trying to print binary tree void print_tree(Node * root,int level ) { if (root!=NULL) { cout<< root->value << endl; } //... } How can I indent ...
1
vote
2answers
29 views

C# Index Out Of Range Exception

I seem to be having a problem with C# 2008. I am creating a simple program that shows a list of all the files within a specific folder. I chose to experiment with system files in the Windows folder. ...
1
vote
1answer
86 views

Mimicking C# out and ref in Scala — ready to use features?

In limited sense it is very easy to write out and ref classes on your own, but my question is not how to do it -- but are there some features (or classes) ready to use? The closest thing I found is ...
1
vote
1answer
38 views

WCF service with 4 input parms and 3 out parms gets reordered by Add Service Reference in Proxy Class Project

I've looked in SO and elsewhere and seen questions posed about this along with some answers that still make no sense to me in my case. I'm refactoring my working VStudio 2010 solution which has: ...
1
vote
2answers
66 views

How to “out” an array of strings and pass it through into a listbox

This is a part of UpdateGUI(): DisplayOptions choice = (DisplayOptions)comboBox1.SelectedIndex; seatMngr.GetSeatInfoStrings(choice, out strSeatInfoStrings); listBox1.Items.Clear(); ...
1
vote
8answers
224 views

Using out keyword in c#

can anyone suggest me the exact use of out keyword as a paramter, and how its connected for returning multiple values from the function, as in this POST, i am confused with out variable with normal ...
1
vote
1answer
69 views

svcutil ignores out paramter of async WCF call

I have a service WCF interface: [ServiceContract(Namespace = "net.pipe://QFX_DLL/TradingService")] public interface IGenericTradingInterface { [OperationContract] void ...
1
vote
4answers
169 views

C# Out-Parameter

can someone say what is the difference between these two code snippets: public void foo(out classA x) { y = new classA(); x = y; } and the second: public void foo(out classA x) { classA y; ...
1
vote
0answers
126 views

Struct declared in C# passed as out parameter to C code is not modified (P/Invoke)

Here is the problem I am having... I have the following C function: GTO_EXPORT(int ) GtoCapFloorVCCustom( TDate valueDate, /* (I) value date */ int moneyMarketDen, /* (I) 360 or ...
1
vote
0answers
409 views

Fatal error: Uncaught CurlException: 28: connect() timed out?

I get this error. And it only begun abt a week. Fatal error: Uncaught CurlException: 28: connect() timed out! thrown in . Facebook forum moderaters tell me its a hosting providers error. And hosting ...
1
vote
2answers
319 views

Large images in WebView cause Out Of Memory

I have activity that parses XML feed (with news) and loads parsed data (text and image url) in WebView's, which are inside gallery widget. Something like this: mimeType = "text/html"; encoding = ...
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
3answers
126 views

Html rendering elements out of order

I'm having trouble with page layout. I'm having to use a mix of tables and divs. The problem occurs with the footer and the div containing the table. The footer is being displayed above that div but ...
1
vote
1answer
180 views

Optional Parameters, mixed with Out in a method signature

I'm replacing a series of method overloads with a handful of methods with named and optional parameters. While this is causing no problem, I am finding that there's a spanner in the works while using ...
1
vote
1answer
94 views

Android: Filter out an application

I am struggling with a weird problem. I have an application manifest that defines intent filters for office files, .doc, .ppt, etc. So, the user can go to an office file in a file explorer, choose ...

1 2 3