.NET Tip: Display Public Information for an Assembly Washington DC

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

Evergreen Computer Services, Inc
(301) 758-2986
12421 Alamanco Way
Washington, DC
Grytek
800-516-0840
11505 Cherry Tree Crossing RD
Cheltenham, MD
NGEN, LLC
(301) 531-9700
1101 Mercantile Lane
Washington, DC
Sophisticated Technologies, Inc.
(301) 731-1015
3311 Grayvine Lane
Washington, DC
L-Soft International, Inc.
(301) 731-0440
8100 Corporate Dr. Suite 350
Washington, DC
Total Service Solutions
(301) 306-7206
4601 Forbes Blvd.
Washington, DC
The Carrington Group, Inc
(202) 726-4441
1818 New York Ave., NE Suite 115
Washington, DC
CGH Technologies, Inc.
(202) 580-7400
600 Maryland Ave., SW
Washington, DC
Enlightened, Inc.
(202) 783-4655
666 11th St., NW
Washington, DC
recover data
001-9800000000
Co-Lane
City, NY

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

Evergreen Computer Services, Inc

(301) 758-2986
12421 Alamanco Way
Washington, DC

Related Local Events
DC Chamber Technology Series: Session 4
Dates: 12/10/2009 - 12/10/2009
Location: Robert H. Smith School at the Ronald Reagan Building and International Trade Center
Washington, DC
View Details

National Facilities Management & Technology (NFMT)
Dates: 3/16/2010 - 3/28/2010
Location: Baltimore Convention Center
Baltimore, MD
View Details

CSI 2009: The Next Phase In Security
Dates: 10/24/2009 - 10/30/2009
Location: Gaylord National Resort and Convention Center
National Harbor, MD
View Details

ACIs 3rd Annual Carbon Capture and Sequestration Summit
Dates: 9/14/2009 - 9/15/2009
Location: Omni Shoreham Hotel
Washington, DC
View Details

3rd Carbon Capture and Sequestration Summit
Dates: 9/14/2009 - 9/15/2009
Location: Omni Shoreham Hotel
Washington, DC
View Details