Hi All,

I have two class A and B. A is a base class and B is derived from A. My question is how to make a public member in A invisible in B. For example,
Class A
public property p1() as string
Get
....
End Get
Set
......
End Set
End Class
Class B
inherits A
< put some code to turn off p1 >
End Class

for Class B, there is no B.p1. How can i do that ? Thanks.