Search
InternalUtils.GetLoadedType Method (String, String)
See Also
 





Gets the type with the specified name from the specified assembly.

Namespace: MindFusion.Diagramming
Package: MindFusion.Diagramming

 Syntax

C#  Copy Code

public static Type GetLoadedType (
    string typeName,
    string asmName
)

Visual Basic  Copy Code

Public Shared Function GetLoadedType( _
    typeName As String, _
    asmName As String _
) As Type

 Parameters

typeName

The full name of the type.

asmName

The full name of the containing assembly.

 Return Value

An instance of the .NET Type class.

 Remarks

This method supports the NetDiagram infrastructure and is not intended to be used directly from your code.

 See Also