Thu
9
Mar '06
private void test(out string test1, out string test2)
{
test1 = “hello”;
test2 = “world”;
}
test(out a, out b);
Text = a + ” “ + b;
private void test(out string test1, out string test2)
{
test1 = “hello”;
test2 = “world”;
}
test(out a, out b);
Text = a + ” “ + b;
Leave a passing comment »