C# generated files

7 posts / 0 new
Last post
Offline
Last seen: 1 year 1 week ago
Joined: 04/10/2023
Posts: 4
How to resolve circular type dependency?

I'm working on a project with complex messages that have something akin to the following pattern in them:

struct TypeA {

TypeB _child; // @resolve-name false

};

struct TypeB {

sequence<TypeA> _sequence; // @resolve-name false

};

 

8 posts / 0 new
Last post
Offline
Last seen: 4 years 5 months ago
Joined: 07/01/2014
Posts: 9
Setting up a C# build with C# generated files

Hi,


I have used rtiddsgen -language C# to generate the interface files and I'm not quite sure how to get them assembled into .NET solution. 


I've got a C# Visualization project that contains:

- VisualizationService_publisher.cs

- VisualizationService_subscriber.cs

and a C++ DDS_Access.dll that includes:

- VisualizationService.h/cpp

- VisualizationServicePlugin.h/cpp

- VisualizationServiceSupport.h/cpp

 

Subscribe to RSS - C# generated files