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, 0 insertions, 14 deletions
diff --git a/examples/dotnet/example_binary/Program.cs b/examples/dotnet/example_binary/Program.cs
deleted file mode 100644
index 7780823347..0000000000
--- a/examples/dotnet/example_binary/Program.cs
+++ /dev/null
@@ -1,14 +0,0 @@
-using System;
-using example_lib;
-
-namespace example_binary
-{
- class MainClass
- {
- public static void Main(string[] args)
- {
- var mc = new MyClass();
- Console.WriteLine(mc.Message);
- }
- }
-}