I tried your code, but it returned nothing to the it, it should returns a value, could you please help me look at the code?
In ProjectB
public server as string = "testing"
Public Class _myClass
Private t As String
Property test() As String
Get
Return t
End Get
Set(ByVal Value As String)
t = server
End Set
End Property
End Class
In projectA
dim s as string
dim a a new projectb._myclass
s=a.test()
messagebox.show(s)
when I run it, the messagebox is empty, why I can't get the value "testing" from projebB?