mirror of
https://github.com/reactos/CMake.git
synced 2025-02-08 12:58:46 +00:00
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();
|
|
}
|
|
}
|
|
}
|