Files
DllExports/Samples/NetFramework/Class1.cs
2023-07-23 13:45:09 +10:00

14 lines
257 B
C#

using System;
using System.Runtime.InteropServices;
using DllExports;
namespace NetFramework
{
public class Class1
{
[DllExport("MyExport", CallingConvention.StdCall)]
public static void InternalName()
{
}
}
}