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;
Related posts:
private void test(out string test1, out string test2)
{
test1 = "hello";
test2 = "world";
}
test(out a, out b);
Text = a + " " + b;
Related posts:

![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
|
|
© 2001-2009 NinethSense, Themes by DBT.
Leave a Reply
You must be logged in to post a comment.