S
sandman
I'm writing a conversion utility to move data from ver 1 of my C#
WinForms app (Access database) to ver 2 (SQL server). I realized that I
have most of the tools I need already written (read and write data) and
they are in separate .NET projects. But when I wrote ver 2, I kept all
the namespaces and class names the same. I've gone thru and renamed the
output dll's in ver 2 so I can reference both sets of libraries in my
conversion project but how can I access the classes? "Using" only
recognizes the namespaces, so only one appears. I'd hate to have to do
a global search and replace and rename everything in ver 2. Is there
something like Lib1::MyLib.MyClass and Lib2::MyLib.MyClass?
WinForms app (Access database) to ver 2 (SQL server). I realized that I
have most of the tools I need already written (read and write data) and
they are in separate .NET projects. But when I wrote ver 2, I kept all
the namespaces and class names the same. I've gone thru and renamed the
output dll's in ver 2 so I can reference both sets of libraries in my
conversion project but how can I access the classes? "Using" only
recognizes the namespaces, so only one appears. I'd hate to have to do
a global search and replace and rename everything in ver 2. Is there
something like Lib1::MyLib.MyClass and Lib2::MyLib.MyClass?