> Now, the Type class has the notion of an "assembly-qualified name" that > includes the assembly in which the type definition appears (e.g., X,A1 and > X,A2), but I don't see any way to use it outside of reflection (e.g., > Type.GetType()). Is there any way I can use the assembly-qualified name in > C# program source instead of the more usual fully-qualified name?
Assembly asm = Assembly.LoadFrom(); asm.CreateInstance() should work in this case. However, I think if you're deriving classes from the conflicting classes you're out of luck. -- Steve Johnson 3t Systems You can read messages from the Advanced DOTNET archive, unsubscribe from Advanced DOTNET, or subscribe to other DevelopMentor lists at http://discuss.develop.com.
