C # assembly class Access assembly information _php tips

Source: Internet
Author: User
Assembly information can be accessed by assembly classes in C #.
1. Allows access to the META elements of a given assembly, including methods that can load and execute the assembly;
2. Loading assemblies: Using static method Assembly.Load (assembly name) or Assembly.LoadFrom (assembly full pathname);
3. Properties:
FullName: assembly display name;
3. Methods:
GetTypes (): Gets the type defined in the assembly.
TestAssembly.cs:
View Plaincopy to Clipboardprint?
Using System; Using System.Reflection;
Namespace Magci.Test.Reflection
{public class testassembly
{public static void Main ()
{//Loading an assembly into the running process
Assembly ass = Assembly.Load ("Testcustomattributes");
Assembly Ass1 = Assembly.LoadFrom (@ "E:\code\dotnet\c#\9-reflection\testcustomattributes.dll");
Get assembly Display Name
Console.WriteLine (Ass1. FullName);
Getting the types defined in an assembly
type[] types = ass. GetTypes ();
foreach (Type t in types)
{Console.WriteLine (t.fullname);
} } } }
Related Article

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.