blob: df4dd96fb3f49f01d39cd03976236a5fba20b3ea (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
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();
}
}
|