out (c#)

Comments   0   Date Arrow  January 26, 2007 at 2:51pm   User  by pichai

class OutReturnExample
{
static void Method(out int i,out string s1,out string s2)
{
i = 44;
s1 = “I’ve been returned”;
s2 = null;
}

[...]

Tagged   C# · Programming  delicious  Comments  Add Your Comment