Guest User

Untitled

a guest
Jul 20th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. In [1]: def inc(x):
  2. ...: """Increments a number"""
  3. ...: return x+1
  4. ...:
  5.  
  6. In [2]: inc?
  7. Type: function
  8. String form: <function inc at 0x105f19758>
  9. File: /Users/christophercaycock/<ipython-input-1-f192044ce250>
  10. Definition: inc(x)
  11. Docstring: Increments a number
  12.  
  13. PS C:Usersmredw> [System.Diagnostics.Process]::GetProcessesByName
  14.  
  15. OverloadDefinitions
  16.  
  17. -------------------
  18.  
  19. static System.Diagnostics.Process[] GetProcessesByName(string processName)
  20.  
  21. static System.Diagnostics.Process[] GetProcessesByName(string processName, string machineName)
Add Comment
Please, Sign In to add comment