Java calling C#
It does not matter whatever C++/CLI (was Managed C++) is supported or not. What you need to be supported is hosting API and it is not supported on NETCF. Should it be supported you won't need C++/CLI...
View ArticleJava calling C#
You really can't do this. Your best bet (if you can call C++ code from your Java code) is to have the C++ code put request on a message queue and consume them from your C# code. But if you go in this...
View ArticleJava calling C#
thanks moshin for your quick answers, but in the first thread it says: "/clr isn't supported when targetting windows mobile. Unhappily Managed C++ isn't supported by .NetCF at this time." and the "Use...
View ArticleJava calling C#
Also refer the link http://bytes.com/groups/net-vc/281834-clr-optionThanks Mohsin S.
View ArticleJava calling C#
Hi Oliver,please see the thread below :http://social.msdn.microsoft.com/forums/en-US/vssmartdevicesnative/thread/cdb03aa6-dc2a-492e-9e15-1a4230b58f1aThanks Mohsin S.
View ArticleJava calling C#
hi Moshin, thanks for the links (although they both link to the same article), but i allready tried this example and could not compile it for windows mobile, because it needs the /clr option for...
View ArticleJava calling C#
Hi Oliver ,you can check this or that for your reference :Hope this might be helpful.Thanks Mohsin S.
View ArticleJava calling C#
Hello, i'm looking for a way to call C# Methods from within my Java-Program. I found some ideas that could work, like calling C++ with JNI and then C++ calls the C# over managedC++ or COM Interop, but...
View Article