Hi,
im just wandering, if this is at all possible.
i have a project which is importing classes from outside the assembly,
when im creating these classes in seperate assemblies i have to reference the project there going into.
is it possible to do this without the reference like a late binding reference?
example
the parts in red are what relies on the reference.
im just wandering, if this is at all possible.
i have a project which is importing classes from outside the assembly,
when im creating these classes in seperate assemblies i have to reference the project there going into.
is it possible to do this without the reference like a late binding reference?
example
Code:
Imports System.ComponentModel.Composition
Imports MEF_Test
<Export(GetType(MEF_Test.IPart))>
<ExportMetadata("Description", "AddText2")>
Public Class AddText2
Implements IPart
Public Function Action(ByVal input As String) As String Implements IPart.Action
Return input & "hello2"
End Function
End Class