共用方式為


_Solution.Create 方法

在指定的目錄中以指定的名稱,建立一個空白方案。

命名空間:  EnvDTE
組件:  EnvDTE (在 EnvDTE.dll 中)

語法

'宣告
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
)

參數

  • Destination
    型別:System.String
    必要項。在這個目錄中建立 .sln 和 .suo (方案) 檔案。
  • Name
    型別:System.String
    必要項。在方案總管中顯示的名稱。這也是 .sln 和.suo 檔案的基底名稱。

範例

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 安全性

請參閱

參考

_Solution 介面

EnvDTE 命名空間