标签:style color sp strong on bs ad ef size
C# const与static的理解
static readonly与 const变量,作用是一样的,无论访问修饰符是不是public,还是其它(private、 protected、internal),变量名称一般为大写,中间以下划线。
例如:
public static readonly int Page_Size= 10;
public const int Page_Size= 10;
标签:style color sp strong on bs ad ef size
原文地址:http://www.cnblogs.com/zlp520/p/4089431.html