Ok. I know this. The problem begin put into the modules definition common
namespace.
i.e.
-Vbmodule.vb
Namespace MyNamespace
public Class ClassVB
.....
....
End Namespace
-Csmodule.cs
Namespace MyNamespace
{
public static main ()
.....
// Use class of of Class ClassVB
....
}
How import the MyNamespace the modules. I like one .exe
Alfonso
> Compile the VB files with the Visual Basic Complier (vbc.exe) using the
> /target:module switch. Then do the same with the C# Compiler (sorry, I
[quoted text clipped - 7 lines]
> > (VB.NET, C# and others) having, finally, one result (e.g. an EXE), using
> > common namespaces?
John Azzolina - 03 Dec 2004 00:53 GMT
Have you removed the default namespace from the VB Project?
Right click on the project and choose project properties.
Clear out the textbox for "Root Namespace" (just leave it blank) and
explicitly use the same namesapce throughout your apps.
-John
> Ok. I know this. The problem begin put into the modules definition common
> namespace.
[quoted text clipped - 33 lines]
> > > (VB.NET, C# and others) having, finally, one result (e.g. an EXE), using
> > > common namespaces?