//1、创建一个System.Text.StringBuilder类的对象sb,
//2、将数组的各元素追加到sb中,
//3、调用sb的ToString()方法,以返回一个字符串。
//下面有一个小例子。
using System;
namespace Demo
{
class Program
{
public static void Main(string[] args)
{
int[] a={1,2,3};
char[] ch={'a','b','c'};
double[] f={1.1,2.2,3.3};
string s;
System.Text.StringBuilder sb=new System.Text.StringBuilder();
foreach(int e in a)
{
sb.Append(e);
sb.Append(' ');
}
foreach(char e in ch)
{
sb.Append(e);
sb.Append(',');
}
sb[sb.Length-1]=' ';
foreach(double e in f)
{
sb.Append(e);
sb.Append('-');
}
sb.Length-=1;
s=sb.ToString();
Console.WriteLine(s);
Console.Write("Press any key to continue . . . ");
Console.ReadKey(true);
}
}
}
温馨提示:答案为网友推荐,仅供参考