I tried to test very simple requester-reply communication model of Connext 5.2 Professional using Visual Studio 2010 in x86win32 env.
With following simple idl,
struct Request { short request_service;};
struct Reply{short reply_service;};
in generated C# example code, I wrote following,
Requester<Request, Reply> requester;
under participant creation code in publisher.cs.
However, in Visual studio development environment, it shows "Requester" is not defined. (can't find type or namespace)