This question is locked. New answers and comments are not allowed.
Look Code blow
==================================================================================
AssemblyPart part = new AssemblyPart();
Assembly a = part.Load(new System.IO.MemoryStream(e.Result)); //e.Result is Telerik.Windows.Controls.Windows7.dll file.
Type t = a.GetType("Telerik.Windows.Controls.Windows7Theme"); // a.GetTypes().Count() = 0, I cant use Type Class..
Telerik.Windows.Controls.Windows7Theme win7 = Activator.CreateInstance(t) as Telerik.Windows.Controls.Windows7Theme;
==================================================================================
Assembly a is not null.
a is Telerik.Windows.Controls.Windows7.dll
but a has not Types!!
so, Is Chart set Dynamically Telerik Theme?