建了两个类: 
1> public abstract class AbstractFactory
2> public class ChineseFactory : AbstractFactory加了反射引用 using System.Reflection;
当执行下面两行代码时
   Assembly ass = Assembly.Load("ChineseFactory") ; 
   string str = ass.FullName;
可以得到正确的信息,str="...........";但是对于class ChineseFactory,
   Assembly ass = Assembly.Load("ChineseFactory") ; 
   string str = ass.FullName;
却抛出异常,"File or assembly name ChineseFactory, or one of its dependencies, was not found."
何解?