Advertisement
Guest User

Untitled

a guest
Mar 24th, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. [DllImport("TestDll.dll", CallingConvention = CallingConvention.Cdecl)]
  2. static extern void Test(string str);
  3.  
  4. static void Main()
  5. {
  6. // DLLのTestを呼ぶ
  7. Test("hogehoge");
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement