10 lines
220 B
C#
10 lines
220 B
C#
using System.Runtime.InteropServices;
|
|
|
|
class Program {
|
|
[DllImport("fakelib.dll")]
|
|
public static extern int fakefunction(int args);
|
|
|
|
static void Main(string[] args) {
|
|
int r = fakefunction(10);
|
|
}
|
|
}
|