I need to load Dynamically linked or Static library file during runtime. Is there a way to do it in delphi prism?
MSDN library doesn’t seem to indicate that.
Any help or hints will be greatly appreciate it.
Thanks,
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can use the
Assembly.LoadFrommethod to load an assembly. from here you can use reflection to invoke a public method of the library.