summaryrefslogtreecommitdiffstats
path: root/Tests/CSharpLinkToCxx/csharp.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/CSharpLinkToCxx/csharp.cs')
-rw-r--r--Tests/CSharpLinkToCxx/csharp.cs16
1 files changed, 16 insertions, 0 deletions
diff --git a/Tests/CSharpLinkToCxx/csharp.cs b/Tests/CSharpLinkToCxx/csharp.cs
new file mode 100644
index 0000000..35c5cc3
--- /dev/null
+++ b/Tests/CSharpLinkToCxx/csharp.cs
@@ -0,0 +1,16 @@
+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();
+ }
+ }
+}