【发布时间】:2011-07-12 02:33:30
【问题描述】:
尝试在 vb.net 中实现接口时出现此错误:
Public Interface IFoo
ReadOnly Property Foo() As String
End Interface
Public Class myFoo
Implements IFoo
Public ReadOnly Property Foo() As String
Get
return "Foo"
End Get
End Property
...
End Class
缺少什么?
【问题讨论】:
-
只是告诉C#可以做一些其他的事情stackoverflow.com/questions/6341184/…