コード例 #1
0
        static void CurrentDomain_AssemblyLoad(object sender, AssemblyLoadEventArgs args)
        {
            string filepath = null;

            if (args.LoadedAssembly.IsDynamic)
            {
                // no file
            }
            else
            {
                filepath = args.LoadedAssembly.Location;
            }

            AbnakiLog.FileInfo(filepath, "Load " + args.LoadedAssembly.GetName());
        }
コード例 #2
0
ファイル: MainWindow.xaml.cs プロジェクト: abnaki/windows
 void InvokeRestoringPanelLayout(FileInfo fi)
 {
     if (fi.Exists)
     {
         var h = RestoringPanelLayout;
         if (h != null)
         {
             using (new WaitCursor())
             {
                 h(fi);
             }
         }
     }
     else
     {
         AbnakiLog.FileInfo(fi, "Nonexistent, ignored");
     }
 }