Reference.Remove 方法

更新:2007 年 11 月

从包含引用的 References 对象中获取该引用。

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

语法

声明
Sub Remove
用法
Dim instance As Reference

instance.Remove()
void Remove()
void Remove()
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

权限

另请参见

参考

Reference 接口

Reference 成员

VSLangProj 命名空间