Link to home
Start Free TrialLog in
Avatar of tamilsoft
tamilsoft

asked on

how to find base class properties and functions through object of derived class while writing code in design time in vb.net?

public class first
public sub one()
end sub
end class

public class second
inherits first
public sub two()
end sub
end class

public class third
inherits second
public sub three()
end sub
end class



how to find base class properties and functions  through object of derived class while writing code in design time in vb.net?
               
for example
dim t as new third

t.                it  list all functions and properties of all of third , second , first  classes
ok. like that I want
even I know following is wrong, this is to understand to you my expectatin.
t.this.              t must show  all functions and properties only into the class "third"
t.base.            it must show  all functions and properties only into the class "second"
t.base.base.   it must show all functions and properties only into the class "first"

how to bring it ?




Avatar of Nasir Razzaq
Nasir Razzaq
Flag of United Kingdom of Great Britain and Northern Ireland image

>this is to understand to you my expectatin.

Looking at your questions, you seem to have quite high expectations from the tools :-)
ASKER CERTIFIED SOLUTION
Avatar of Jacques Bourgeois (James Burger)
Jacques Bourgeois (James Burger)
Flag of Canada image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of tamilsoft
tamilsoft

ASKER

Thank you expert mister "jamesburger" .
I have visual studio2005 professional edition.
You have told a good idea. ok.
I feel this is  little long in developing  object oriented versality.

wel let, eclipse editor for java.  while we Type ObjectName and "." ,  then displays all classes and inherited base class name and its member, inherited base of base class name and its member names. we can understand class and member difference between  inherited base , base of base , which member which class belonged to and ancestry of inheritance untill last base.
this is better reason and knowledge for  deep maturity , thinking  and growing , creative of object oriented skill, appllying my own application development  idea using through object oriented concept.

lke that, I want a super way in visual studio2005 or higher version to become a powerful man.
show that way.

SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial