Possible Duplicate:
How can I return multiple values from a function in C#?
C#方法始终如一:
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!