interoptopus_csharp 0.16.0-alpha.20

The C# backend for Interoptopus.
Documentation
using System.Collections.Generic;
using My.Company;
using My.Company.Common;
using Xunit;

public class TestPatternServicesAsyncWire
{
    [Fact]
    public async void Passthrough()
    {
        var s = ServiceAsyncWire.Create();
        var d = new Dictionary<string, string>
        {
            { "hello", "world" }
        };
        var r = await s.WirePassthrough(d.Wire());
        r.Unwire();
    }
}