ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question

Revision history [back]

Implementing a ROS client library in C# is not trivial. Some information on the client protocol can be found here. What you essentially need to do is:

  • Implement the slave API which is based on XMLRPC.

  • Implement a message generator that parses msg files and generates C# code for serialization an deserialization

  • Implement the TCPROS transport.

Also have a look at this wiki page and this question.