public static void Main()
System.Net.Http.HttpClient client;
foreach(var r in Assembly.GetEntryAssembly().GetReferencedAssemblies())
var a = Assembly.Load(new AssemblyName(r.FullName));
foreach(var t in a.DefinedTypes)
methodCount += t.GetMethods().Count();
Console.WriteLine("{0:N0} types with {1:N0} methods in {2} assembly.", arg0:a.DefinedTypes.Count(), arg1:methodCount, arg2:r.Name );