Imports RevisionManager
Imports System.Runtime.InteropServices
Module Example
    Sub Main()
        Dim objApplication As RevisionManager.Application = Nothing
        Dim objInsight As RevisionManager.Insight = Nothing
        Dim aListOfFoldersToDelete(2) As Object
        Dim NumberOfSuccessfullyDeletedFolders As Long
        Dim aListOfFoldersSuccessfullyDeleted As Object
        Try
            ' Start Revision Manager.
            objApplication = New RevisionManager.Application
            ' Get reference to Insight object.
            objInsight = objApplication.Insight
            aListOfFoldersToDelete(0) = "http://solidvm/Engineering/PreReleased/PreReleasedDocLib/greg1"
            aListOfFoldersToDelete(1) = "http://solidvm/Engineering/PreReleased/PreReleasedDocLib/greg"
            aListOfFoldersToDelete(2) = "http://solidvm/Engineering/PreReleased/PreReleasedDocLib/Summit"
            objInsight.DeleteFolder(aListOfFoldersToDelete.Length, aListOfFoldersToDelete, NumberOfSuccessfullyDeletedFolders, aListOfFoldersSuccessfullyDeleted)
        Catch ex As Exception
            ' Write any errors to console.
            Console.WriteLine(ex.Message)
        Finally
            ' Release COM Objects.
            If Not (objInsight Is Nothing) Then
                Marshal.ReleaseComObject(objInsight)
                objInsight = Nothing
            End If
            If Not (objApplication Is Nothing) Then
                objApplication.Quit()
                Marshal.ReleaseComObject(objApplication)
                objApplication = Nothing
            End If
        End Try
    End Sub
End Module