I recently developed an internal structure in .NET 2.0, which mainly relates to classes and helpers.
The problem is that I have some .NET 1.1 sites and applications, and I would like to use my infrastructure. I know that I cannot name .NET 2.0 in .NET 1.1, but I have an idea.
If I create another project 2.0 with ComVisible and reference some of my collections 2.0, then recreate my necessary functions only for references to these classes, and in .NET 1.1 call this new assembly ComVisible; can I then use assemblies 2.0 in .NET 1.1?
If this works mostly, I can use it in .NET 1.1, Java Reflection, etc.
Or am I wasting my time?
source
share