嗨,我有两个字符串生成器 s1 和 s2。我正在使用逗号分隔符为该字符串生成器分配订单。我想比较两个字符串生成器。我想知道 s1 中的所有订单也在 s2 中。如果不是,我想知道 s2 中缺少哪个订单。如何做到这一点?
if (!IsPostBack)
{
int reccount = dsResult.Tables[0].Rows.Count;
for (int count = 0; count < reccount;count++)
{
HashSet<string> arrayOrdId = new HashSet<string>();
arrayOrdId.Add(dsResult.Tables[0].Rows[count][1].ToString());
// arrayOrdId[count] = dsResult.Tables[0].Rows[count][1].ToString();
}
}