I want to develope a mobile application for my company using Xamarin.
I have got to grips with basics of Xamarin to the point at which and want to start using my companies standard routines for inter process communications (TCP/IP messages).
All of these standard routines are part of a visual basic class library. I have added a reference to the class library under "project" and I can access the routines in C++ code (e.g. "Produce.Send_message (type, Message);"
When I went to test to see is a message was sent, it initally said it could reference the visual basic runtime, add a NuGet package.
So I did, I found the Microsoft.VisualBasic NuGet runtime and installed that.
Now when I go to test the code, it just hangs and does nothing.
And now I'm stuck.
Before someone says just rewrite into C++ I should say there are a lot of routines coded in the class library that I will want to use (they are all tested and working exteremly well) so I really want to avoid rewriting it all into c++.
Can any one help me?