Mega Code Archive

 
Categories / VB.Net / Reflection
 

Type GetInterfaces

Imports System.Collections.Generic Public Class Example     Shared Sub Main()         For Each tinterface As Type In GetType(Dictionary(Of Integer, String)).GetInterfaces()             Console.WriteLine(tinterface.ToString())         Next     End Sub End Class