My apps always seem to have two loaded assemblies that have random 8 character names, but always the same version. Notice the first and last items in the attached pic.
I can't seem to find any good info on where these are coming from. Anybody know?
Thanks,
Mike
Edit: Here's the code I use to load the ListView
Code:private void DisplayLoadedAssemblies() { Assembly[] assemblies = AppDomain.CurrentDomain.GetAssemblies(); foreach (Assembly a in assemblies) { AssemblyName an = a.GetName(); ListViewItem item = new ListViewItem(an.Name.ToString(), 0); item.SubItems.Add(an.Version.ToString()); this.lvAssemblies.Items.Add(item); Debug.WriteLine(a.ToString()); } }




Reply With Quote