_Solution.Create Method

Creates an empty solution in the specified directory with the specified name.

Namespace:  EnvDTE
Assembly:  EnvDTE (in EnvDTE.dll)

Syntax

'Declaration
Sub Create ( _
    Destination As String, _
    Name As String _
)
void Create(
    string Destination,
    string Name
)
void Create(
    String^ Destination, 
    String^ Name
)
abstract Create : 
        Destination:string * 
        Name:string -> unit 
function Create(
    Destination : String, 
    Name : String
)

Parameters

  • Destination
    Type: System.String
    Required. The directory in which to create the .sln and .suo (solution) files.
  • Name
    Type: System.String
    Required. The name to display in Solution Explorer. This is also the base name of the .sln and .suo files.

Examples

Sub CreateExample()
   ' 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

See Also

Reference

_Solution Interface

EnvDTE Namespace