c#新手教程

  1. 结构体的使用
using System;
using System.Collections;
using System.Xml.Serialization;
namespace first1017
{
    struct node
    {
        public int id;
        public int[] gra;
    }
    class Program
    {
        
        static void Main(string[] args)
        {
            node[] stu=new node[37];
            Random ran=new Random();
       
        }
    }
}

你可能感兴趣的:(c#)