PowerShell 技能连载 - 请注意 ToString() 方法
任何 .NET 对象都有一个 ToString()
方法,返回的是一段文字描述。这也是当您将一个对象输出为一个字符串时所得到的内容。然而,ToString()
所返回的值可能会改变,所以您永远不要使用它来做一些重要的事情。
Here is an example – these lines both produce a FileInfo object which represents the exact same file. Only the way how the object was created is different. All object properties are identical. Yet, ToString() differs:
以下是一个例子——这两行代码都会创建一个 FileInfo
对象,来代表同一个文件。只是创建对象的方法有所不同。所有的对象属性都相同。然而,ToString()
的结果不同:
1 | PS> $file1 = Get-ChildItem $env:windir -Filter regedit.exe |
PowerShell 技能连载 - 请注意 ToString() 方法