Summary: Learn how to find all methods from a .NET Framework class by using Windows PowerShell.
How can I use Windows PowerShell to show both static and dynamic methods for a .NET Framework class?
Use the GetMethods method from the class. This example uses the System.Math class to return the
method name and if the method is static:
[math].GetMethods() | Select Name, IsStatic -Unique