. it's not giving an error but is, instead, return an array with 0 items. i feel like i have run into this before (even on my development machine) but I can't for the life of me remember what the problem is.
Assembly assembly = Assembly.GetAssembly(this.GetType());
//MessageBox.Show(assembly.Location + Environment.NewLine + assembly.FullName + Environment.NewLine );
Type[] types;
try
{
types = assembly.GetTypes();
}
catch (ReflectionTypeLoadException ex)
{
MessageBox.Show(ex.Message);
}
Get*Assemblycalls? i.e.GetExecutingAssembly()or the like. Just trying to narrow down what the problem might be. – jheddings Nov 27 '12 at 19:06