I have a .a static library developed in Objective-C and built for iOS.
Let's call it Encoders.a
.
I have been able to import such library as a project into Visual Studio 2017 using the vsimporter tool of the iOS Bridge (https://developer.microsoft.com/en-us/windows/bridges/ios).
Unfortunately I am not able to add the reference of such project to an UWP project that I need to work on.
I have a bunch of methods and classes in Encoders.a
that I would like to use in my C# methods.
How can I use such methods and classes in my C# code?
Thank you very much!