intellisence

A

Andy Read

Dear all,

Can anyone tell me why the VS IDE does not display the methods /
functions etc for the base class object. This may be a stupid question but
I expected to see the ToString function or the Equals function in the
intellisense?

Example:

Dim obj as New Object

obj. ???

Am I going mad?

Thanks
 
A

Angela

I think you're going mad. : P

I'm not sure why the Intellisense isn't working for your
object. I just tried it to see if I could do it and it
worked.

Example:
object obj = new object();

//typing obj. produced an Intellisense list consisting of:
Equals
GetHashCode
GetType
ToString
 
C

Chris Dunaway

Can anyone tell me why the VS IDE does not display the methods /
functions etc for the base class object. This may be a stupid

Longshot: Check your setting and make sure that the "Hide Advanced
Members" checkbox is cleared for the VB editor.

Am I going mad?

Do the voices talk to you too? :)

HTH

chris
 
A

Andy Read

Thanks to all that replied, I cleared the check box "Hide Advanced Members"
and it now works a treat.

Cheers.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top