_Solution.Close Method
Closes the current solution.
Namespace: EnvDTE
Assembly: EnvDTE (in EnvDTE.dll)
Syntax
'Declaration
Sub Close ( _
SaveFirst As Boolean _
)
void Close(
bool SaveFirst
)
void Close(
[InAttribute] bool SaveFirst
)
abstract Close :
SaveFirst:bool -> unit
function Close(
SaveFirst : boolean
)
Parameters
SaveFirst
Type: System.BooleanIndicates whether to save the solution before closing it; true if the solution should be saved prior to closing it, false if not.
Examples
Sub CreateExample(ByVal dte As DTE)
' Open a solution before running this example.
Dim soln As Solution
' Create a reference to the solution.
soln = dte.Solution
' Create a new solution.
soln.Create("c:\temp", "ANewSoln.sln")
End Sub
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.