Tagged Questions
The out-parameter tag has no wiki summary.
5
votes
1answer
71 views
Why is the C# compiler claiming 'use of an unassigned variable' prior to 'yield return' and dynamic?
The compiler complains that resultingThing in the code below is being used before being assigned to.
private IEnumerable<IThing> FindThings(dynamic spec)
{
if (spec == null)
yield ...
4
votes
2answers
2k views
c# reflection: 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()
{
...
3
votes
4answers
67 views
Most user friendly way of passing back two variables in Java?
I'm writing a library that contains some hash functions.
I want one of the functions to return the hash (byte[]) and the random salt (byte[]) that was generated for use with the hash. What would be ...
3
votes
11answers
489 views
Why is this C# code not compiling?
Why is this C# code not compiling?
public static Dictionary<short, MemoryBuffer> GetBulkCustom(int bufferId,
int startSecond,out int chunksize, out int bardatetime)
{
//const string ...
1
vote
1answer
505 views
DynamicMethod and out-parameters?
How do I define a DynamicMethod for a delegate that has an out-parameter, like this?
public delegate void TestDelegate(out Action a);
Let's say I simply want a method that sets the a argument to ...
0
votes
2answers
256 views
When using out parameters in a function, is it good practice to initialize them in the function?
I have a function that uses out parameters to return multiple values to the caller. I would like to initialize them in the function, but I wasn't sure if that's a bad idea since you don't know when ...
0
votes
4answers
3k views
Parameter in C#
Hi
When I want get total value of memory in C# I found a kernel32 function in MSDN to invoke data from system. MSDN declare function this way:
[return: MarshalAs(UnmanagedType.Bool)]
...