aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples/dotnet/example_binary/Program.cs
diff options
context:
space:
mode:
Diffstat (limited to 'examples/dotnet/example_binary/Program.cs')
-rw-r--r--examples/dotnet/example_binary/Program.cs14
1 files changed, 14 insertions, 0 deletions
diff --git a/examples/dotnet/example_binary/Program.cs b/examples/dotnet/example_binary/Program.cs
new file mode 100644
index 0000000000..7780823347
--- /dev/null
+++ b/examples/dotnet/example_binary/Program.cs
@@ -0,0 +1,14 @@
+using System;
+using example_lib;
+
+namespace example_binary
+{
+ class MainClass
+ {
+ public static void Main(string[] args)
+ {
+ var mc = new MyClass();
+ Console.WriteLine(mc.Message);
+ }
+ }
+}