How to Invoke the .Net dll in the project without giving the actual reference

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • amollokhande1
    New Member
    • Feb 2008
    • 33

    #1

    How to Invoke the .Net dll in the project without giving the actual reference

    Hi All,

    I am inprocess of writting the procedure, that will invoke any method from any .net dll.

    Requirement for this procedure is that dll will not be avaiable as a reference to the project.

    Can anybody tell me how to invoke the .net dll without giving the actual reference to the project?


    Regards
    Amol Lokhande
  • vekipeki
    Recognized Expert New Member
    • Nov 2007
    • 229

    #2
    Check the System.Reflecti on namespace. You can load an assembly using Assembly Class and then use Reflection to get types (classes), and then their methods and properties.

    Comment

    Working...