?public string GetvalueSpilt(string str, string i)
? ? ? ? {
? ? ? ? ? ? //將字符切分為以個(gè)數(shù)組
? ? ? ? ? ? string rentstr = "";
? ? ? ? ? ? List<string> listYGSS = str.Split(',').ToList();
? ? ? ? ? ? if (listYGSS.Exists(p => p == i))
? ? ? ? ? ? {
? ? ? ? ? ? ? ? rentstr = "√";
? ? ? ? ? ? }
? ? ? ? ? ? return rentstr;
? ? ? ? }