gpt4 book ai didi

c# - 在 C# 中的函数中返回两个字符串

转载 作者:太空狗 更新时间:2023-10-29 21:08:48 25 4
gpt4 key购买 nike

<分区>

考虑:

protected string Active_Frozen(string text, string color)
{
connection();
string query = "SELECT CustomerInfo FROM ActiveSubscription WHERE UserName=@UserName";

SqlCommand cmd = new SqlCommand(query, conn);

if(query=="true")
{
text = "Active";
color = "Green";
}
else
{
text = "Frozen";
color= "Red";
}

return (text, color);
}

我想返回两个字符串:文本和颜色,但我不确定是什么问题。

错误@return语句:

(参数)?文字/颜色

Cannot convert lambda expression to type 'string' because it is not a delegate type

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