Does anyone know how to supress the private variables from showing in the .NET Namespace?
I have a Class that looks similar to this.
When I use the class in a programing environment the "propA" Value appears in the namespace when I hit SomeClassA"." .
Does anyone know how to supress this or is there a different technique to use that hides the reference that I don't know about?
I have a Class that looks similar to this.
VB.NET:
[B]Public Class SomeClassA
Private propA as string
Public Property SOMEPROP() as String
Get
return propA
End Get
Set(value as string)
propA = value
End Set
End Property
End Class[/B]
When I use the class in a programing environment the "propA" Value appears in the namespace when I hit SomeClassA"." .
Does anyone know how to supress this or is there a different technique to use that hides the reference that I don't know about?