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 get a type by name alone if you have the Assembly it's in. Would that work for you?
That way you could specify the assembly name in a separate location from the types you're trying to access.
Assembly assembly = typeof(System.Linq.Enumerable).Assembly;
Type type = assembly.GetType("System.Linq.Enumerable");