今天是第一次接觸C#,由於長時間的做Java開發,突然轉到C#非常的不自然,但是也有了一些收穫,給大家分享一下 ...
今天是第一次接觸C#,由於長時間的做Java開發,突然轉到C#非常的不自然,但是也有了一些收穫,給大家分享一下
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(); } } }