コード例 #1
0
ファイル: IDE.cs プロジェクト: zhuzhenping/OpenQuant.API
 public static void CloseSolution()
 {
     if (IDE.CloseSolutionRequested != null)
     {
         IDE.CloseSolutionRequested(null, EventArgs.Empty);
     }
 }
コード例 #2
0
ファイル: IDE.cs プロジェクト: zhuzhenping/FreeOQ
 ///<summary>
 ///  Closes current solution
 ///</summary>
 public static void CloseSolution()
 {
     if (IDE.CloseSolutionRequested == null)
     {
         return;
     }
     IDE.CloseSolutionRequested((object)null, EventArgs.Empty);
 }