interoptopus_csharp 0.16.0-alpha.16

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

namespace My.Company;

partial class ServiceA: IServiceA<ServiceA>
{
    public static ServiceA Create()
    {
        return new();
    }

    public uint Call(uint x)
    {
        return x + 1;
    }
}