话谈C#第一天_.NET_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > .NET > 话谈C#第一天

话谈C#第一天

 2017/11/14 21:03:38  翊风  程序员俱乐部  我要评论(0)
  • 摘要:今天是第一次接触C#,由于长时间的做Java开发,突然转到C#非常的不自然,但是也有了一些收获,给大家分享一下usingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Text;usingSystem.Threading.Tasks;namespacecong{classProgram{staticvoidMain(string[]args){constintN=10;long[]a=newlong[N]
  • 标签:C# 第一天

今天是第一次接触C#,由于长时间的做Java开发,突然转到C#非常的不自然,但是也有了一些收获,给大家分享一下

class="brush:csharp;gutter:true;">using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace cong
{
    class Program
    {
        static void Main(string[] args)
        {
            const int N = 10;
            long[] a = new long[N];
            //int[] a = { 1, 2, 3 };
            var r = new Random();
            for (int i=0;i<N;i++) {
                a[i] = r.Next(1,10);
            }
            foreach (long x in a)
            {
                Console.WriteLine(x);
            }
            Console.WriteLine();
            Console.Read();
        }
    }
}

  

发表评论
用户名: 匿名