Use the system;
Use the system. Assemble. Generics;
Use the system. Text;
Namespace Baidu. _008 1 105
{
Class plan
{
Static void Main(string[] args)
{
char[] a ={ '0 ',' 1 ',' 2 ',' 3 ' };
New arrangement (a). ToString();
}
}
Category arrangement
{
char[]a;
Public arrest (char[] a)
{
this.a = a
}
public new void ToString()
{
String s = string. Empty;
for(int I = 0; I<a. Length; i++)
{
s += a[i]。 ToString();
}
Console. Write a line;
}
}
}