码迷,mamicode.com
首页 > 其他好文 > 详细

将字符串数组转换成整形数组

时间:2014-06-11 11:13:15      阅读:179      评论:0      收藏:0      [点我收藏+]

标签:tar   string   os   name   for   new   

/// <summary>
/// 将字符串数组转换成整形数组
/// </summary>
/// <param name="Content"></param>
/// <returns></returns>
protected static int[] ToIntArray(string[] Content)
{
int[] c = new int[Content.Length];
for (int i = 0; i < Content.Length; i++)
{
c[i] = Convert.ToInt32(Content[i].ToString());
}
return c;
}

将字符串数组转换成整形数组,布布扣,bubuko.com

将字符串数组转换成整形数组

标签:tar   string   os   name   for   new   

原文地址:http://www.cnblogs.com/q101301/p/3772742.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!