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.