Reference2.Remove 方法

将引用从包含它的 References 对象中移除。

命名空间:  VSLangProj2
程序集:  VSLangProj2(在 VSLangProj2.dll 中)

语法

声明
Sub Remove
void Remove()
void Remove()
abstract Remove : unit -> unit 
function Remove()

示例

' Macro Editor
Imports VSLangProj
Public Sub TestReport()
   ' First project is a Visual Basic or C# project.
   Dim vsProject As VSProject = _
      CType(DTE.Solution.Projects.Item(1).Object, VSProject)
        
   ' Add an assembly and display its type, "Assembly".
   Dim newRef As Reference
   newRef = vsProject.References.Add("C:\SomeProject\bin\template.dll")
   newRef.Remove()
End Sub

.NET Framework 安全性

请参见

参考

Reference2 接口

Remove 重载

VSLangProj2 命名空间