.Net Remoting with Visual C++ .NET

  • Thread starter Thread starter Moises Lima Dutra
  • Start date Start date
M

Moises Lima Dutra

Hi everybody.

Is there a way to use .NET Remoting with Visual C++ .Net?
In positive case, how to build the interfaces like they're
built in C#?


Thanks,
Moises.
 
Hi,

yes, you can use C++ with managed extensions. Currently I'm working on a
project where I have two applications, server written in C++, client written
in C# and everything works fine.

In C++ with managed extensions, there are many additional keywords compared
to ordinary C++, many of them have names beginning with __ for example
__interface for declaring interfaces. See MSDN.


LP
 
Hi,

yes, you can use C++ with managed extensions. Currently I'm working on a
project where I have two applications, server written in C++, client written
in C# and everything works fine.

In C++ with managed extensions, there are many additional keywords compared
to ordinary C++, many of them have names beginning with __ for example
__interface for declaring interfaces. See MSDN.


LP
 
Back
Top