我需要声明一个属性存储为值类型的类。我还需要让我的课程可以继承,所以我不能把它变成一个结构。
Class MyClass
...
End Class
Class InheritingClass
Inherits MyClass
...
End Class
有没有其他方法可以在不将其转换为结构和使用接口的情况下执行此操作? (以下示例)
Structure MyStructure
Implements MyInterface
...
End Structure
Structure InheritingStructure
Implements MyInterface
...
End Structure
Interface MyInterface
...
End Interface
PS:如果您不了解vb
,可以在C#中发布答案答案 0 :(得分:1)
如果您需要将类型设置为值类型,则除了使其成为struct
之外别无他法。
也许,如果您提供更多背景信息,导致另一个问题,我们可能会找到更好的解决方案来解决您的实际问题。