I have an asp.net web project that references a domain project.
From within the web project, I want to create an instance of a class from the domain project using re
You can do something like this, ignoring those attributes:
Dim myType as Type = Type.GetType("System.Linq.Enumerable"));
or:
Dim myType as Type = Type.GetType("System.Linq.Enumerable, System.Core"));