This works fine for me:That said, it's useless for you because you're using the actual type to get the assembly in the first place, but you don't know the actual type at design time because you're not reading the type name until run time.CSharp Code:
Assembly asm = Assembly.GetAssembly(typeof(char)); Type typ = asm.GetType("System.Char");




Reply With Quote