S
Skandaja
Hi All,
I have created a classic MFC Dialog application ( statically linked
to MFC Library) which can run on any windows platform, without any
library dependencies.
Now, In this application I want to use .NET library say I want to use
sockets provided by .Net
using namespace System::Net::Sockets;
TcpClient* tl = new TcpClient("192.168.0.241",9001);
NetworkStream* nw = tl->GetStream();
bla.. bla...
I want to make a static link to the .Net libraries, so that my
application can run on any Windows platform, without any library
dependencies.
Is there any way I can acheive this??
Thanks for your earliest attention.
Regards,
Manjesh
I have created a classic MFC Dialog application ( statically linked
to MFC Library) which can run on any windows platform, without any
library dependencies.
Now, In this application I want to use .NET library say I want to use
sockets provided by .Net
using namespace System::Net::Sockets;
TcpClient* tl = new TcpClient("192.168.0.241",9001);
NetworkStream* nw = tl->GetStream();
bla.. bla...
I want to make a static link to the .Net libraries, so that my
application can run on any Windows platform, without any library
dependencies.
Is there any way I can acheive this??
Thanks for your earliest attention.
Regards,
Manjesh