17 lines
266 B
C#
Raw Normal View History

2017-07-20 19:35:53 +02:00
using System;
using CLIApp;
namespace CSharpLinkToCxx
{
internal class CSharpLinkToCxx
{
public static void Main(string[] args)
{
Console.WriteLine("#message from CSharpLinkToCxx");
var app = new MyCli();
app.testMyCli();
}
}
}