예제 #1
0
파일: Exceptions.cs 프로젝트: PlumpMath/CAM
 internal ModuleLoadException(TypeModuleEventArgs args)
     : base("Reflection context could not load module from " + args.Type + ".")
 {
     this._args = args;
 }
예제 #2
0
 private static void ctx_TypeModuleLoadEvent(object sender, TypeModuleEventArgs e)
 {
     e.Module = e.Type.Module;
 }