RosettaCodeData/Task/Call-a-function-in-a-shared-library/C-sharp/call-a-function-in-a-shared-library.cs

11 lines
220 B
C#
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
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);
}
}