How to call a async await method from a CLR C++

Viewed 299

I have a C# library with the following code:

    namespace MyProducer
    {
        public class Producer
        {
            public async Task PublishAsync(int Id, string name)
            {
            }
        }
    }

How can I call this from a managed CLR C++?

0 Answers
Related