How to: Refer to an Enumeration Member (Visual Basic)
Enumerations provide a convenient way to work with sets of related constants and to associate constant values with names. For example, you can declare an enumeration for a set of integer constants associated with the days of the week, and then use the names of the days rather than their integer values in your code.
You can avoid using fully qualified names with the Imports
statement. For more information, see Enumerations and Name Qualification.
To refer to an enumeration member
Qualify the member name with the enumeration. For example, the following example assigns the
Saturday
member of theFirstDayOfWeek
enumeration to the variableDayValue
.DayValue = FirstDayOfWeek.Saturday
See also
التعاون معنا على GitHub
يمكن العثور على مصدر هذا المحتوى على GitHub حيث يمكنك أيضاً إضافة مشاكل وطلبات سحب ومراجعتها. للحصول على معلومات إضافية، اطلع على دليل المساهم لدينا.