I'm wondering if it's possible to do something like the following?
Public Class MyClass
Public t As Type = Reflection.Assembly.Load("AssemblyPath").GetType("TypePath")
Public Function Foo() As t
[...]
End Function
End Class
In other words, I'd like to use reflection to obtain type references which I would then use as return types or method parameter types. Can I do this, and if so, how? Thanks.