Results 1 to 7 of 7

Thread: Random assembly names

Threaded View

  1. #1

    Thread Starter
    Frenzied Member Mike Hildner's Avatar
    Join Date
    Jul 2002
    Location
    Des Moines, NM
    Posts
    1,690

    Random assembly names

    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());
                }
            }
    Attached Images Attached Images  
    Last edited by Mike Hildner; Jan 13th, 2006 at 04:24 PM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width