📜  c#代码示例中的静态是什么意思

📅  最后修改于: 2022-03-11 14:48:58.709000             🧑  作者: Mango

代码示例1
In C#, static means something which cannot be instantiated. You cannot create an object of a static class and cannot access static members using an object. C# classes, variables, methods, properties, operators, events, and constructors can be defined as static using the static modifier keyword.