|
-
Jan 17th, 2003, 10:36 AM
#1
Thread Starter
Lively Member
how to turn off a public member in a derived class
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.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|