dileep


{ City }
< Country > india
* Profession *
User No # 22303
Total Questions Posted # 0
Total Answers Posted # 2

Total Answers Posted for My Questions # 0
Total Views for My Questions # 0

Users Marked my Answers as Correct # 24
Users Marked my Answers as Wrong # 5
Questions / { dileep }
Questions Answers Category Views Company eMail




Answers / { dileep }

Question { Value Labs, 12414 }

How can we Achieve Late binding in C#.Can any give one example.


Answer

Late Binding means compiler doesn't have any prior knowledge
about COM's methods and properties and it is delayed until
runtime. Actually program learns the addresses of methods
and properties at execution time only i.e. when those
methods and properties are invoked. Late bound code
typically refers client objects through generic data types
like 'object' and relies heavily on runtime to dynamically
locate method addresses. We do late binding in C# through
reflection. Reflection is a way to determine the type or
information about the classes or interfaces.

Is This Answer Correct ?    18 Yes 4 No

Question { CMC, 5421 }

What are the valid parameter types we can pass in an
Indexer ?


Answer

IN,OUT,INOUT are the valid parameter types that we can pass
in a Indexer

Is This Answer Correct ?    6 Yes 1 No