Tagged Questions
The out-parameters tag has no wiki summary.
53
votes
6answers
3k views
C# : Why doesn't 'ref' and 'out' support polymorphism?
Take the following:
class A {}
class B : A {}
class C
{
C()
{
var b = new B();
Foo(b);
Foo2(ref b); // <= compile-time error:
// "The 'ref' ...
32
votes
9answers
907 views
What is bad practice when using out parameters?
Are there any principles to keep in mind when using out parameters? Or can I look at them as just a good way to let a method return multiple values?
What did the language designers have in mind when ...
18
votes
6answers
362 views
In what situations are 'out' parameters useful (where 'ref' couldn't be used instead)?
As far as I can tell, the only use for out parameters is that a caller can obtain multiple return values from a single method invocation. But we can also obtain multiple result values using ref ...
11
votes
2answers
415 views
When is the value of a C# 'out' or 'ref' parameter actually returned to the caller?
When I make an assignment to an out or ref parameter, is the value immediately assigned to the reference provided by the caller, or are the out and ref parameter values assigned to the references when ...
9
votes
2answers
668 views
Why don't anonymous delegates/lambdas infer types on out/ref parameters?
Several C# questions on StackOverflow ask how to make anonymous delegates/lambdas with out or ref parameters. See, for example:
Calling a method with ref or out parameters from an anonymous method
...
9
votes
4answers
1k views
Passing a property as an 'out' parameter in C#
Suppose I have:
public class Bob
{
public int Value { get; set; }
}
I want to pass the Value member as an out parameter like
Int32.TryParse("123", out bob.Value);
but I get a compilation ...
8
votes
8answers
570 views
Real-world examples where C# 'out' parameters are useful?
I'm reading up on core C# programming constructs and having a hard time wrapping my head around the out parameter modifier. I know what it does by reading but am trying to think of a scenerio when I ...
7
votes
4answers
2k views
Is there a VB.NET equivalent of C# out parameters
Does VB.NET have a direct equivalent to C# out function parameters, where the variable passed into a function does not need to be initialised?
7
votes
5answers
864 views
C#: can 'out' parameters in functions be object properties/variables?
C#: can 'out' parameters in functions be object properties/variables?
eg:
can I call a function as follows:
someFunction(x, y, out myObject.MyProperty1)
7
votes
9answers
479 views
How to avoid out parameters?
I've seen numerous arguments that using a return value is preferable to out parameters. I am convinced of the reasons why to avoid them, but I find myself unsure if I'm running into cases where it is ...
6
votes
2answers
1k views
Fetch Oracle table type from stored procedure using JDBC
I'm trying to understand different ways of getting table data from Oracle stored procedures / functions using JDBC. The six ways are the following ones:
procedure returning a schema-level table type ...
5
votes
4answers
353 views
Is there a way to omit out parameter?
Assume I have a function with out parameter, however I do not need its value. Is there a way to pass no actual parameter if given result will be thrown away anyway?
Sorry, acutally it turned out to ...
5
votes
4answers
1k views
How best to implement out params in JavaScript?
I'm using Javascript with jQuery. I'd like to implement out params. In C#, it would look something like this:
/*
* odp the object to test
* error a string that will be filled with the error ...
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
2answers
728 views
Sybase IN and OUT parameters
I'm going nuts about how the Sybase JDBC driver handles stored procedures with mixed IN and OUT parameters. Check out this simple stored procedure:
CREATE OR REPLACE PROCEDURE p (IN i1 INT, OUT o1 ...
4
votes
4answers
1k views
C#: How to use generic method with “out” variable
I want to create a simple generic function
void Assign<T>(out T result)
{
Type type = typeof(T);
if (type.Name == "String")
{
// result = "hello";
}
else if (type.Name == ...
4
votes
4answers
480 views
Why is an out parameter not allowed within an anonymous method?
This is not a dupe of Calling a method with ref or out parameters from an anonymous method
I am wondering why out parameters are not allowed within anonymous methods. Not allowing ref parameters ...
4
votes
4answers
364 views
Code analysis comes back with suggestion about not using “out” parameters
I ran the VS 2008 code analysis tool against an object I created and received the following suggestion ...
Warning 147 CA1021 : Microsoft.Design
: Consider a design that does not
require that ...
4
votes
3answers
845 views
C# Out parameter question: How does Out handle value types?
UPDATE So totally pulled a tool moment. I really meant by reference versus Out/Ref. Anything that says 'ref' I really meant by reference as in
SomeMethod(Object someObject)
Versus
...
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
4answers
111 views
Should out params be set even if COM function fails?
When implementing a COM interface I always assign to the out parameters on success but should I do so also on error?
HRESULT CDemo::Div(/*[in]*/ LONG a, /*[in]*/LONG b, /*[out,retval]*/ LONG* pRet)
{
...
3
votes
2answers
1k views
How to circumvent using an out parameter in an anonymous method block?
The following method does not compile. Visual Studio warns "An out parameter may not be used within an anonymous method". The WithReaderLock(Proc action) method takes a delegate void Proc().
public ...
2
votes
1answer
48 views
Can Metro make Java webservices interoperable with WCF even if Java lacks out parameter support?
I have a WCF client that used to call a WCF method with an out parameter:
int SomeMethod(out int anotherReturnValue);
When reimplementing this method in a Java Webservice will I have to change this ...
2
votes
4answers
295 views
PHP, PDO Stored Procedure return nothing or unchanged value
i am using php with mysql.
My stored proc returns values via out parameter via Toad4MySQL but when it comes to php Pdo, it does not capture the return value.
here's my code
$validusername= 'x';
...
2
votes
5answers
480 views
List<T> as 'out' parameter causes an error. Why?
In this code:
public bool SomeMethod(out List<Task> tasks)
{
var task = Task.Factory.StartNew(() => Process.Start(info));
tasks.Add(task);
}
I get an error, "Use of unassigned out ...
2
votes
2answers
201 views
passing out parameter
I wrote a method with an out parameter:
-(NSString *)messageDecryption:(NSString *)receivedMessage outParam:(out)messageCondent
{
messageCondent = [receivedMessage substringFromIndex:2];
...
2
votes
4answers
455 views
BestPractices: Out parameters vs complex return types in methods
Using complex return type:
Public Type TimeType
hours As Integer
minutes As Integer
End Type
Public Function ParseTimeField(time As String) As TimeType
Dim timeObject As TimeType
Dim ...
2
votes
3answers
222 views
How to create IN OUT or OUT parameters in Java
In PL/SQL (or many other languages), I can have IN OUT or OUT parameters, which are returned from a procedure. How can I achieve a similar thing in Java?
I know this trick:
public void method(String ...
2
votes
2answers
821 views
Problem reading out parameter from stored procedure using c#
I just come across a strange problem where i cannot retrieve the sql stored procedure out parameter value. I struck with this problem for nearly 2 hours.
Code is very simple
using (var con = new ...
2
votes
4answers
225 views
why can't I pass an unassigned object variable in an out parameter and then assign it
In C#, why can't I pass an unassigned object variable in an out parameter and then assign it?
If I try to do this, there is a compiler error: "Local variable <xyz> cannot be declared in this ...
2
votes
1answer
238 views
Using TryGetValue() in LINQ?
This code works, but is inefficient because it double-lookups the ignored dictionary. How can I use the dictionary TryGetValue() method in the LINQ statement to make it more efficient?
...
2
votes
4answers
2k views
SubSonic: retrieving value of stored procedure OUT parameters
I love your tool. I have been using it a lot, but just today I ran into a problem...
I wrote a stored procedure that returns some values via OUT parameters, but SubSonic does not seem to generate the ...
1
vote
1answer
140 views
How to initialize byte array as an OUT parameter in C# before proper array length is known
I'm having trouble with a webmethod used to download a file to a calling HTTPHandler.ashx file. The handler calls the webmethod as follows:
byte[] docContent;
string fileType;
string fileName;
string ...
1
vote
1answer
70 views
iBatis generates only 6 parameters (all null), other time generates 9 parameters
I have a good insert statement which has 9 parameters, but for some reason iBatis generates only 6 for a particular object. For all other it generates 9, as it should.
Could it be the fact that all ...
1
vote
1answer
173 views
c# generic delegate with out parameter - define and call
I'm currently refactoring an existing DAL which has a facade the user calls and an inner class that does the actual work dependent upon the ADO.Net provider to use e.g. SqlProvider, and I'm trying to ...
1
vote
2answers
333 views
T-SQL - parameter assignment, data retrieval and comparison in one line - is it possible?
I want to do something like this in T-SQL, but it will return an error:
DECLARE @Stock int
IF(SELECT @Stock = [Stock] FROM dbo.Products WHERE [ProductID] = 1) > 5
PRINT 'Stock is good: ...
1
vote
3answers
288 views
Return value or out parameter for c# method that can return either a char or string?
I ran across some code during a code review that didn't seem right, but not sure the "best" way to change it. In looking for an a answer I found which is better, using a nullable or a boolean ...
1
vote
1answer
1k views
C# - how to pass 'out' parameter into lambda expression
I have a method with the following signature:
private PropertyInfo getPropertyForDBField(string dbField, out string prettyName)
In it, I find the associated value prettyName based on the given ...
1
vote
3answers
173 views
.NET LINQ Call Method with Out Parameters Within Query and use Out Values
I have a list of objects, which has a method that has a couple of out parameters. How do i call this method on each object, get the out parameter values and use them later on in the query, perhaps for ...
1
vote
3answers
397 views
Patterns for simulating optional “out” parameters in C#?
I'm translating an API from C to C#, and one of the functions allocates a number of related objects, some of which are optional. The C version accepts several pointer parameters which are used to ...
1
vote
4answers
2k views
How many OUTPUT parameters can we declare for a stored procedure in SQL Server?
How many OUTPUT parameters can we declare for a stored procedure in SQL Server ?
1
vote
4answers
513 views
PL SQL - Return SQLCODE as OUT parameter is accepted?
I have a procedure that returns an OUT parameter.
procedure foo (in_v IN INTEGER, out_v OUT integer)
BEGIN
...
EXCEPTION
WHEN OTHERS THEN
--sh*t happend
out_v := SQLCODE;
END
That ...
1
vote
2answers
73 views
How to reflect on method with out params?
I am trying to get a MethodInfo object for a method on a type with an out param in its signature. Something to the effect of this:
MethodInfo tryParse = typeof(T).GetMethod(
"TryParse",
...
1
vote
2answers
100 views
How should I check that [out] params in COM can be used?
Officially one should not use [out] parameters from COM functions unless the function succeeded this means that there are (at least) three ways to see if an [out] parameter can be used.
Consider the ...
0
votes
1answer
85 views
Using ouput parameter of type SYS_refcursor
In my database I have a stored procedure with an OUTPUT parameter of type SYS_REFCURSOR. The application side is wrtitten in C#. Can I assign this procedure's output parameter to a Datatable like:
...
0
votes
1answer
192 views
Out parameters in stored procedures (oracle database)
I used stored proceture in the Oracle. How can I use out parameteres of the SP in C# code?
I use the following code for it:
OracleSP
PROCEDURE TABMPWORKREQUEST_INS(INTWORKREQUEST_ IN NUMBER, ...
0
votes
3answers
105 views
Which result pattern is best for a public API and why?
There are a few different common patterns for returning the result of a function call in public APIs. It is not obvious which is the best approach. Is there a general consensus on a best practice, ...
0
votes
2answers
158 views
how can return two string from a method seperately without appending?
i have method that will receive a string input(with message & mode name) and the method will separate the string input in to two strings(1.message 2.mode name) according to separator.
but i need ...
0
votes
1answer
601 views
Cant call pl-sql stored procedure with OUT Parameter oracletypes.cursor
I need some help to call a Oracle Stored Procedure in Groovy and receive a ResultSet by an Output Parameter.
I can call stored procedure with output parameters of other data types, but for CURSOR I ...
0
votes
3answers
345 views
MySql, .NET, Stored Procedures sharing the current date and time with the calling client
I'm writing a stored procedure to update a table:
UPDATE st SET somedate = NOW();
The client of the SP must know the exact date and time generated by the NOW function.
There are two options:
1) ...