Constant & Enum

PascalCase

Constant dùng PascalCase (Theo Framework Guideline cùa Microsoft).

Constant & Enum

Những giá trị nào chắc chắn không đổi như Active, Inactive có nên làm enum thay vì constant.

Cần so sánh để lựa chọn cách tốt nhất:
// Constants:

public class Constants
{

    public static class UserStatus
    {

        public const int Inactive = 0;

        public const int Active = 1;

    }

}


// Enum

public static class Constants
{
    public enum UserStatus
    {
        Inactive = 0,
        Active = 1;
    }
}

Last updated