gpt4 book ai didi

c# - 传递 ValueTuple 而不是参数

转载 作者:太空宇宙 更新时间:2023-11-03 22:35:08 24 4
gpt4 key购买 nike

<分区>

是否可以通过这种方式进行(或者我可能需要特定版本的 C#)?

Function<int,int,int,int> triSum = (a,b,c) => {return a+b+c;};
var tup = (1,2,3);
triSum(tup); //passing one tuple instead of multiple args

更新:我的意思是传递元组而不是单独的参数。

public void DoWrite(string s1, string s2)
{
Console.WriteLine(s1+s2);
}
public (string,string) GetTuple()
{
//return some of them
}
//few lines later
DoWrite(GetTuple());

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com