using System;
namespace ConsoleApplication2
{
/// <summary>
/// Class1 的摘要说明。
/// </summary>
class Class1
{
/// <summary>
/// 应用程序的主入口点。
/// </summary>
[STAThread]
static void Main(string[] args)
{
//
// TODO: 在此处添加代码以启动应用程序
//
string a="01001001";
int[] ary=new int[a.Length];
for(int i=0;i<a.Length;i++)
{
ary[i]=int.Parse(a.Substring(i,1));
}
for(int j=0;j<a.Length;j++)
{
Console.WriteLine("ary["+j.ToString()+"]="+ary[j].ToString());
}
Console.ReadLine();
}
}
}
代码