1. 程式人生 > >ASP.NET 有多個返回值的函式

ASP.NET 有多個返回值的函式

1. 函式:

public (string, string, int, double) FunctionName(string ID) {
    string a1 = "";    //第1個返回值
    string a2 = "";    //第2個返回值
    int a3 = 1;        //第3個返回值
    double a4 = 1.20;  //第4個返回值
    return (a1, a2, a3, a4);
}

2. 呼叫:

//第一種呼叫方法:
var str= FunctionName("1111");
string test1=str.Item1;

//第二種呼叫方法:
var (a1,a2,a3,a4) = FunctionName("1111");
string test2 = a1;