Skip to content

Instantly share code, notes, and snippets.

@melanchall
Created October 5, 2022 16:48
Show Gist options
  • Save melanchall/d45be6b41b2c533e2c3bccd7ea56c6c7 to your computer and use it in GitHub Desktop.
Save melanchall/d45be6b41b2c533e2c3bccd7ea56c6c7 to your computer and use it in GitHub Desktop.
[Medium] NuGet Native 17
using System.Runtime.InteropServices;
namespace DualLibClassLibrary
{
internal sealed class Api32 : Api
{
[DllImport("test32")]
public static extern int Foo();
public override int Method()
{
return Foo();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment