标签:style blog color ar sp for div log bs
1 string a = "33*33"; 2 string[] strarr = a.Split(‘*‘); 3 int[] intarr = new int[strarr.Length]; 4 for (int i = 0; i < strarr.Length; i++) 5 { 6 intarr[i] = int.Parse(strarr[i]); 7 }
标签:style blog color ar sp for div log bs
原文地址:http://www.cnblogs.com/GeDiao/p/4103485.html