Summary: Learn how to use Windows PowerShell to find information about a .NET framework method.
How can I use Windows PowerShell to find basic information about a particular .NET Framework method?
Use the GetMethod method from the class, for example:
[math].GetMethod("Tan")
Note The method name is case sensitive and it must be in double quotation marks.