class ForEachTest
{
static void Main(string[] args)
{
int[] fibarray = new int[] { 0, 1, 2, 3, 5, 8, 13 };
foreach (int i in fibarray)
{
System.Console.WriteLine(i);
}
}
}
--------------
string a = "a,b,c";
string[] arr = a.Split(',');//根据逗号分割成字符串数组,数组中的内容是a、b和c三个值。
string s = a.Replace(',', ';'); //这个是用分号去替换逗号,出来的结果为:a;b;c
posted on 2011-03-14 09:47
luis 阅读(524)
评论(0) 编辑 收藏 引用