PowerShell 获取实例的所有成员

示例

PS > Get-Member -InputObject $anObjectInstance

这将返回类型实例的所有成员。这是String实例的示例输出的一部分

   TypeName: System.String

Name             MemberType            Definition
----             ----------            ----------
Clone            Method               System.ObjectClone(),System.ObjectICloneable.Clone()
CompareTo        Method                int CompareTo(System.Object value), int CompareTo(string strB), i...
Contains         Method                bool Contains(string value)
CopyTo           Method                void CopyTo(int sourceIndex, char[] destination, int destinationI...
EndsWith         Method                bool EndsWith(string value), bool EndsWith(string value, System.S...
Equals           Method                bool Equals(System.Object obj), bool Equals(string value), bool E...
GetEnumerator    Method               System.CharEnumeratorGetEnumerator(), System.Collections.Generic...
GetHashCode      Method                int GetHashCode()
GetType          Method                type GetType()
...