VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > Python基础教程 >
  • C#教程之数组杂记

复制代码
int[] nums = { 12,13,14,15,16,17,18}; //初始化字符串
            int length = Convert.ToInt32(nums.Length);//转化
            //Console.WriteLine(length); length=7
            string[] str = new string[length];
            for (int i = 0; i < str.Length; i++)
            {
                str[i] = Convert.ToString(nums[i]);
            }
            //输出新数组
            Console.Write("新数组是:");
            for (int i = 0; i < str.Length; i++)
            {
                Console.Write(" "+str[i]);
            }

                Console.WriteLine();
复制代码

相关教程