UtilReflectionGetAllInterfacesT Method
Gets all the interfaces implemented or inherited by the specified Type.
Namespace: DevCase.Core.Diagnostics.Assembly.ReflectionAssembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public static Type[] GetAllInterfaces<T>()
Public Shared Function GetAllInterfaces(Of T) As Type()
Dim returnValue As Type()
returnValue = UtilReflection.GetAllInterfaces()
public:
generic<typename T>
static array<Type^>^ GetAllInterfaces()
static member GetAllInterfaces : unit -> Type[]
No code example is currently available or this language may not be supported.
- T
-
The source type from which to retrieve the interfaces.
Type
All the found interfaces implemented or inherited by the specified
Type.
This is a code example.
No code example is currently available or this language may not be supported.
Dim interfaces As Type() = GetAllInterfaces(Of Form).OrderBy(Function(type As Type) type.FullName).ToArray()
For Each [interface] As Type In interfaces
Console.WriteLine([interface].FullName)
Next [interface]
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.