mirror of
https://github.com/reactos/CMake.git
synced 2024-11-28 05:50:42 +00:00
51865fc67e
Fixes: #16755
17 lines
266 B
C#
17 lines
266 B
C#
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();
|
|
}
|
|
}
|
|
}
|