diff options
Diffstat (limited to 'baz/Baz.cs')
| -rw-r--r-- | baz/Baz.cs | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -1,9 +1,14 @@ using System; +using System.Runtime.InteropServices; public class Baz { + [DllImport("hello_c")] + private static extern void hello_c(); + public static void Print() { Console.WriteLine("Baz"); + hello_c(); } } |
