热门IT资讯网

泛型的静态成员

发表于:2024-11-27 作者:热门IT资讯网编辑
编辑最后更新 2024年11月27日,------------------------------------StaticDome.csusing System;using System.Collections.Generic;using

------------------------------------StaticDome.cs

using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace ConsoleApplication3{    public class StaticDome    {        public static int x;    }}

------------------------------------主程序

StaticDome.x = 4;StaticDome.x = 5;Console.WriteLine(StaticDome.x);//输出4Console.WriteLine(StaticDome.x);//输出5Console.ReadKey();
0