interoptopus_csharp 0.16.0-alpha.17

The C# backend for Interoptopus.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
using System;
using System.Linq;
using System.Threading.Tasks;
using My.Company;
using My.Company.Common;
using Xunit;
using Array = My.Company.Array;


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