本文介绍了如何在多个类中使用只读属性的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我在 class1 中创建了一个只读属性(名称).如何在 class2 中使用此名称属性?
I have created a read-only property(name) in class1. How can I use this name property in class2?
Public Class Class1
ReadOnly Property name() As String
Get
Return System.IO.path.GetFileName("C:\Demo\Sample1")
End Get
End Property
可以直接把这个名字变量的值带入class2吗?需要建议.
Can I directly carry this name variable value into class2? Need suggestion.
推荐答案
通过 Class1 的实例
Via an instance of Class1
Public Class Class2
Sub New()
Dim o As New Class1
Dim s As String = o.Name
End Sub
End Class
这里是有关课程的内容.
这篇关于如何在多个类中使用只读属性的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!