integrating a c# dll in ROS
I am forced to integrate a .NET assembly in a ROS node (kinetic). I have tested the .NET assembly with mono and it works just fine.
What are my chances of creating a succesful ROS node purely in C#? For example, I would need to subscribe to a topic for receiving image data. Or would you recommend to wrap the .NET assembly in c++ and use c++ for ROS integration?
I have never done any of the two...