AssemblyInfo.cs C # assembly class access assembly information

Source: Internet
Author: User
In C #, you can access assembly information through the Assembly class.
1. Allow access to the META elements of a given assembly, including methods that can load and execute assemblies;
2. Load assembly: Use static method Assembly.Load (assembly name) or Assembly.LoadFrom (assembly full path name);
3. Properties:
FullName: assembly display name;
3. Method:
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 ()
{//To load an assembly into the running process
Assembly-Assembly.Load ("testcustomattributes");
Assembly Ass1 = Assembly.LoadFrom (@ "E:\code\dotnet\c#\9-reflection\testcustomattributes.dll");
Get assembly Display Name
Console.WriteLine (Ass1. FullName);
Get types defined in an assembly
type[] types =. GetTypes ();
foreach (Type t in types)
{Console.WriteLine (t.fullname);
} } } }

The above describes the AssemblyInfo.cs C # assembly class access to the assembly information, including the AssemblyInfo.cs aspects of the content, I hope that the PHP tutorial interested in a friend helpful.

  • 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.