Top "Out-parameters" questions

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 …

vb.net c#-to-vb.net out-parameters
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 …

javascript out-parameters
Java MyBatis stored procedure call with OUT parameters

First question: I am trying to return one OUT parameter and not a result set with annotations. First, is it …

java stored-procedures mybatis out-parameters
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 …

oracle stored-procedures jdbc resultset out-parameters
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 …

c# properties out-parameters
Out parameters in C

void swap(int &first, int &second){ int temp = first; first = second; second = temp; } int a=3,b=2; swap(a,…

c parameters pass-by-reference out-parameters
How can I invoke a method with an out parameter?

I want expose WebClient.DownloadDataInternal method like below: [ComVisible(true)] public class MyWebClient : WebClient { private MethodInfo _DownloadDataInternal; public MyWebClient() { _DownloadDataInternal = …

c# reflection out-parameters
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 …

c# linq lambda out-parameters
Null out parameters in C#?

After reading on stackoverflow that in the case of checking the format of a DateTime you should use DateTime.TryParse. …

c# .net out-parameters
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 …

java language-agnostic parameters out-parameters