// Token: 0x060000E3 RID: 227 RVA: 0x00016B74 File Offset: 0x00014D74 private static string DelSameAnser(string strIm) { string[] array = FPUtils.DelArraySame(FPUtils.SplitString(strIm)); string text = ""; foreach (string str in array) { if (text != "") { text += ","; } text += str; } return(text); }