.NET Tip: Display Public Information for an Assembly Orlando FL

Discover how to display the public information for an assembly. This will allow you to get a complete view of the assemblies you are using or creating.

Local Companies

Longview Solutions Inc
407-246-1030
135 N Magnolia Ave
Orlando, FL
Perceptive Technologies
(321) 206-5999
37 N. Orange Ave. Suite 810
Orlando, FL
Aspire Solution
407-894-5560
2909 Fairgreen St
Orlando, FL
Cam Commerce Solutions
407-774-8098
4449 Lipton CT
Orlando, FL
Riptide Software
407-384-8818
3452 Lake Lynda Dr
Orlando, FL
Tapestry Solutions
407-482-0270
3361 Rouse Rd
Orlando, FL
Acusoft
407-658-9888
11869 High Tech Ave
Orlando, FL
Progressive System Solutions Inc
407-523-7676
4019 Clarcona Ocoee RD
Orlando, FL
Group One Software
407-248-0998
7380 W Sand Lake Rd
Orlando, FL
Miller Software Systems Inc
407-354-5433
8504 Cedar Cove CT
Orlando, FL

provided by: 
Originally published at Internet.com


My last tip, "Display All Fields and Properties of an Object," showed you how to display information for an object in your program. This time, I'll show you how to display the public information for an assembly. I'll again use reflection to load an assembly and then iterate through the modules, types, and members of the assembly. The DisplayAssemblyInfo() below will do just this, returning a string with all of the relevant information. public static string DisplayAssemblyInfo(string AssemblyName) { StringBuilder sb = new StringBuilder(); sb.Append("Assembly: " + AssemblyName); Assembly Assembly = Assembly.LoadFrom(AssemblyName); foreach (Module Module in Assembly.GetModules()) { sb.Append("\r\n\r\n Module: " + Module.Name); Type[] TypesArray = Module.FindTypes(null, null); foreach (Type Type in TypesArray) { sb.Append("\r\n Type: " + Type.Name); MemberInfo[] MemberInfoArray = Type.GetMethods(BindingFlags.Public | BindingFlags.Instance | BindingFlags.DeclaredOnly); sb.Append("\r\nMembers: "); if (MemberInfoArray.Length > 0) { foreach (MemberInfo MemberInfo in MemberInfoArray) { sb.Append(MemberInfo.Name + "\r\n "); } } else sb.Append("None"); } } return sb.ToString(); }

In this case, I'm only including the public instance members that are actually declared on the type, not inherited members. You can take a look at the other options for the BindingFlags available on the GetMethods() call to set different criteria. Here is an example of calling the DisplayAsseblyInfo() method and displaying the result in the output window. Debug.Print(Util.DisplayAssemblyInfo("CS Tips.exe"));

The results in the output window look like this: Assembly: CS Tips.exe Module: CS Tips.exe Type: IReadOnlyGPSLocation Members: get_Latitude get_Longitude get_Speed get_Direction Type: GPSLocation Members: get_Latitude set_Latitude get_Longitude set_Longitude get_Speed set_Speed get_Direction set_Direction Type: Asset Members: get_MostRecentLocation set_MostRecentLocation

With this technique, you can get a better view of the assemblies you are using or use it to help document the assemblies you are creating.

About the Author

Jay Miller is a Software Engineer with Electronic Tracking Systems, a company dedicated to robbery prevention, apprehension, and recovery based in Carrollton, Texas. Jay has been working with .NET since the release of the first beta and is co-author of Learn Microsoft Visual Basic.Net In a Weekend. Jay can be reached via email at jmiller@sm-ets.com.

Author: Jay Miller

Read article at Internet.com site

Featured Local Company

Longview Solutions Inc

407-246-1030
135 N Magnolia Ave
Orlando, FL

Related Local Events
PERFORMANCE RACING INDUSTRY SHOW 2009
Dates: 12/10/2009 - 12/12/2009
Location: Orange County Convention Center
Orlando, FL
View Details

American Rental Association Annual Convention and Rental Trade Show
Dates: 2/8/2010 - 2/11/2010
Location: Orange County Convention Center
Orlando, FL
View Details

Pittcon - Pittsburgh Conference and Exposition on Analytical Chemistry and Applied Spectroscopy
Dates: 3/1/2010 - 3/1/2010
Location: Orange County Convention Center
Orlando, FL
View Details

OOPSLA '09: ACM SIGPLAN Object Oriented Programming Systems and Applications Conference
Dates: 10/19/2009 - 10/23/2009
Location: Disney Coronado Springs Resort
Lake Buena Vista, FL
View Details

2009 3rd International Symposium on Empirical Software Engineering and Measurement (ESEM)
Dates: 10/15/2009 - 10/16/2009
Location: Hilton Walt Disney World Resort
Lake Buena Vista, FL
View Details