Advertisement
Guest User

código c#

a guest
Jun 7th, 2013
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.45 KB | None | 0 0
  1.  
  2.         [DllImport("NewDll.dll", CallingConvention = CallingConvention.Cdecl)]
  3.         public static extern double soma(double a, double b);
  4.  
  5.         [DllImport("NewDll.dll", CallingConvention = CallingConvention.Cdecl, CharSet = CharSet.Unicode)]
  6.         public static extern string mensagem(string x);
  7.  
  8.         [DllImport("NewDll.dll", CallingConvention = CallingConvention.Cdecl)]
  9.         public static extern double subtracao(double a, double b);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement