Skip to content

Commit

Permalink
More concise command line
Browse files Browse the repository at this point in the history
  • Loading branch information
guillermooo authored Jul 11, 2024
1 parent c8b5bef commit 06bf4fd
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions reference/7.4/Microsoft.PowerShell.Core/About/about_Arrays.md
Original file line number Diff line number Diff line change
Expand Up @@ -1055,11 +1055,10 @@ Thursday, June 24, 2021 1:23:30 PM
```

The `set_LastWriteTime()` method is a _hidden_ member of the **FileInfo**
object. The following example shows how to find members that have a _hidden_
`set` method.
object. The following example shows how to find _hidden_ `set` methods.

```powershell
$files | Get-Member | Where-Object Definition -like '*set;*'
$files | Get-Member -Force -Name set_*
```

```Output
Expand Down

0 comments on commit 06bf4fd

Please sign in to comment.