interoptopus_csharp 0.16.0-alpha.19

The C# backend for Interoptopus.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
using My.Company;
using Xunit;

public class TestPatternServicesAsyncBasic
{
    [Fact]
    public async void Call()
    {
        var s = ServiceAsyncBasic.Create();
        await s.Call();
    }
}