我有一个字符串数组,其中大部分是字符串值“true”或“false”,还有其他字符串,但我不想更改它们。
所以我希望遍历字符串,在遇到单词“true”或“false”的地方我想将字符串更改为“1”或“0”
这些 1、0 和其他字符串最终将用作传递给 SQL 存储过程 IE 的参数: seCmd.Parameters["@CheckListRef"].Value = data[0];
我只是在语法上苦苦挣扎,因此寻求指导
string[] data = args.Trim().Split(',');
// Loop over strings
foreach (string s in data)
{
if(s == "true")
{
convert the string True to the string 1
}
else if(s == "false")
{
convert the string True to the string 0
}
}
请有人提供一些指导