.NET integration

Yes, this is possible. I’m working on a tutorial that shows how to easily do Interprocess communication using an EndNote plugin that makes use of the .NET library and will post that later. However, here’s a short example:

You can include a namespace in the .NET library by::

#pragma managed
using namespace System;
using namespace System::ServiceModel;

You can then do:

String^ result = gcnew String("Hello!");

This uses the .NET string class rather than any of the many other types of strings that are available.

I hope this answers your question.

1 Like