What is a “static” class?

后端 未结 10 1450
面向向阳花
面向向阳花 2020-12-04 16:35

In C# what is the difference between:

public static class ClassName {}

And:

public class ClassName {}
10条回答
  •  甜味超标
    2020-12-04 17:10

    All methods/properties in a static class must be static, whereas a 'normal' class can contain a mix of instance and static methods.

提交回复
热议问题