Exemplo n.º 1
0
 public static void CloseSolution()
 {
     if (IDE.CloseSolutionRequested != null)
     {
         IDE.CloseSolutionRequested(null, EventArgs.Empty);
     }
 }
Exemplo n.º 2
0
 ///<summary>
 ///  Closes current solution
 ///</summary>
 public static void CloseSolution()
 {
     if (IDE.CloseSolutionRequested == null)
     {
         return;
     }
     IDE.CloseSolutionRequested((object)null, EventArgs.Empty);
 }