interoptopus_csharp 0.16.0-alpha.19

The C# backend for Interoptopus.
Documentation
using My.Company;
using My.Company.Common;
using Xunit;
using Interop = My.Company.Interop;

public class TestWireBasic
{
    [Fact]
    public void wire_accept_string_1()
    {
        Interop.wire_accept_string_1("hello world".Wire());
    }

    [Fact]
    public void wire_accept_string_2()
    {
        var x = new MyString
        {
            x = "hello world"
        }.Wire();


        Interop.wire_accept_string_2(x);
    }
}