วันจันทร์ที่ 29 กรกฎาคม พ.ศ. 2556

c# Assembly QualifiedName format and How to find.

Format is
NamespaceQualifiedTypeName, AssemblyName
 
How to get is
 
Type objType = typeof(System.Array);

        // Print the full assembly name.
        Console.WriteLine ("Full assembly name:\n   {0}.", 
                           objType.Assembly.FullName.ToString()); 

        // Print the qualified assembly name.
        Console.WriteLine ("Qualified assembly name:\n   {0}.", 
                           objType.AssemblyQualifiedName.ToString());  

ไม่มีความคิดเห็น: