C# Puzzle: out parameters

This method usually outputs false.
Can you imagine a situation where it outputs true?

static bool Test(out int x, out int y)
{
    x = 123;
    y = 45;
    return (x == y);
}

You can find the solution in .NET Fiddle.

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s