Guest User

Untitled

a guest
Dec 15th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. using System.Runtime.InteropServices;
  2.  
  3. public class Hello1
  4. {
  5. [DllImport ("libc.so.6")]
  6. private static extern int getpid ();
  7.  
  8. public static void Main()
  9. {
  10. System.Console.WriteLine(getpid());
  11. }
  12. }
Add Comment
Please, Sign In to add comment