How does IDE identify about a property/method of an object when a (dot, Auto complete) e.g variablename.ToString();

Showing Answers 1 - 5 of 5 Answers

Sonali J. Noolkar

  • Oct 18th, 2006
 

IDE uses reflection to display the list of object members to which . is applied.

  Was this answer useful?  Yes

Aldo John

  • Sep 5th, 2008
 

Dear friend, Reflection is all about reading metadata from assemblies. And this metadata is generated only while compiling. IDE's intellisense works fine even before any compilation...


How it is working?? Pretty simple...They who compile and do all the hard stuff for dont know about the functions and properties you have written???
The IDE will keep track of all the functions and properties so that it can quickly display that in the intellisence window....

  Was this answer useful?  Yes

IDE enables the property or method to be completed through Intelli Sense.  It knows the classes  like Forms, Buttons and their appropriate properties and methods.  This it displays to the user through Coding in a particular Programming Language.  Though the property or method is mentioned through intellisense it is defined differently in different programming languages like public  void prodedure() or public sub procedure.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions