C # How to Use reflection to load the Assembly and call methods of classes in the Assembly

Source: Internet
Author: User

Assume that there is a dog DLL in the C-drive root directory.ProgramSet file. This Assembly file contains a method called a dog in the dog class. How to load this c: \ dog through reflection. DLL, and call the sound method in the dog class:

Public class dog

{

Public void sound (INT count)

{Console. writeline ("{0} sound", count );}

}

The details are as follows:

First, reflection mainly uses the system. Reflection namespace, so the program must reference this namespace.

Using system. reflection;
Write a test as follows:

Public void test ()

{

String assemblyfilepath = @ "C: \ dog. dll ";

Assembly ass = assembly. LoadFile (assemblyfilepath );

Type T = ass. GetType ("dog", false, false );

Methodinfo info = T. getmethod ("sound ");

Object instance = activator. createinstance (t );

Info. Invoke (instance, new object [] {2}); // two calls from a dog

}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.