Numeric constants in enum (c#)

后端 未结 5 1335
既然无缘
既然无缘 2021-01-24 05:06

I\'m creating this selectbox in a SharePoint web part and need to have a drop down with the current version so I need to use an Enum.

public enum SelectVersionEn         


        
5条回答
  •  [愿得一人]
    2021-01-24 05:37

    Enum members must be valid C# identifiers.
    They cannot start with numbers.

    Instead, you can use something like Office2007, Office2010 or V2007, V2010.

提交回复
热议问题