vb.net enum的应用
答案:3 悬赏:70 手机版
解决时间 2021-12-02 15:04
- 提问者网友:不要迷恋哥
- 2021-12-02 10:15
vb.net enum的应用
最佳答案
- 五星知识达人网友:轮獄道
- 2021-12-02 10:42
枚举,可以简单的理解为一组关联或者有序的固定值;比如一周有7天,想直接取中文格式的“周一”到“周日”,VB.NET是没有一个专门的函数实现这个功能的,这个时候就可以通过枚举的方法简单获取。
全部回答
- 1楼网友:毛毛
- 2021-12-02 12:32
这个貌似是属性语法错了吧……
应该这样写,绝对不会有问题
Property ReadMonth
Get
Return ……
End Get
Set(value As Month)
…… = value
End Set
End Property
Property <...> (... As ...)这么写是错的
应该这样写,绝对不会有问题
Property ReadMonth
Get
Return ……
End Get
Set(value As Month)
…… = value
End Set
End Property
Property <...> (... As ...)这么写是错的
- 2楼网友:七十二街
- 2021-12-02 12:08
Public Class MyClass1
Private _month As xMonths
Public Property Month() As xMonths
Get
Return Month
End Get
Set(ByVal value As xMonths)
_month = value
End Set
End Property
End Class
Private _month As xMonths
Public Property Month() As xMonths
Get
Return Month
End Get
Set(ByVal value As xMonths)
_month = value
End Set
End Property
End Class
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯