文章出處
文章列表
var ltCode = from item in psw.VehicleInsuranceItem select item.Code; string code = string.Join("|", ltCode.ToArray()); string 轉List<string> List<string> ltCodes = new List<string>(System.Text.RegularExpressions.Regex.Split(code, "|")); List<string> ltCodes = new List<string>(code.Split(new string[] { ", " }, StringSplitOptions.RemoveEmptyEntries));
文章列表
全站熱搜