G
Gideon
hi all.
i try to compile c++ code into a .NET assembly that would be integrated into
C#.
all my c++ types and objects are not __gc, so in the assembly they all seem
to inherit from System.ValueType; in the object browser, the members of my
c++ classes do not show, hence when i instantiate an object of that
assembly, i cant access any of its members.
can this be done at all without having my types being __gc?
also, after adding the dll as a reference, i get this error:
(i obviously did add it as a reference, etc.)
The type or namespace name 'NonManagedAssembly' could not be found (are you
missing a using directive or an assembly reference?)
thanks very much.
i try to compile c++ code into a .NET assembly that would be integrated into
C#.
all my c++ types and objects are not __gc, so in the assembly they all seem
to inherit from System.ValueType; in the object browser, the members of my
c++ classes do not show, hence when i instantiate an object of that
assembly, i cant access any of its members.
can this be done at all without having my types being __gc?
also, after adding the dll as a reference, i get this error:
(i obviously did add it as a reference, etc.)
The type or namespace name 'NonManagedAssembly' could not be found (are you
missing a using directive or an assembly reference?)
thanks very much.