Return multiple values from a function
Filed in C# on Mar.09, 2006
private void test(out string test1, out string test2)
{
test1 = “hello”;
test2 = “world”;
}
test(out a, out b);
Text = a + ” ” + b;
VN:F [1.1.6_502]Rating: 0.0/5 (0 votes cast)












