Hi All,
I have a question and can't seem to find a answer anywhere. A normal function can void or return a object.
public void CoolFunction()
{
[INDENT]//Some Code[/INDENT]
}
I know you can do this.
public int ReturnOneObject()
{
[INDENT]return intNumber[/INDENT]
}
What I can't find or even know is possible is a function that returns two objects.
public int, bool MultiReturnFunction()
{
[INDENT] return intNumber, blBool[/INDENT]
}
Any ideas?