Possible Duplicate:
How can I return multiple values from a function in C#?
C# methods is always like this:
public <return type> funName()
{
//do sth
return someValueformatedasReturnType;
}
how to return 2 values from 1 c# methods?
This is a interview question, as many as you know. Thanks!
From best to worst (IMHO):
Tuple