_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 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。