Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions reference/5.1/Microsoft.PowerShell.Core/About/about_Arrays.md
Original file line number Diff line number Diff line change
Expand Up @@ -500,8 +500,8 @@ $intA

### ForEach()

Allows to iterate over all elements in the array and perform a given operation
for each element of the array.
Allows you to iterate over all elements in the array and perform a given
operation for each element of the array.

The `ForEach()` method has several overloads that perform different operations.

Expand Down Expand Up @@ -667,10 +667,10 @@ to accept them.

### Where()

Allows to filter or select the elements of the array. The script must evaluate
to anything different than: zero (0), empty string, `$false` or `$null` for the
element to show after the `Where()`. For more information about boolean
evaluation, see [about_Booleans][04].
Allows you to filter or select the elements of the array. The script must
evaluate to anything different than: zero (0), empty string, `$false` or
`$null` for the element to show after the `Where()`. For more information about
boolean evaluation, see [about_Booleans][04].

There is one definition for the `Where()` method.

Expand Down
12 changes: 6 additions & 6 deletions reference/7.4/Microsoft.PowerShell.Core/About/about_Arrays.md
Original file line number Diff line number Diff line change
Expand Up @@ -500,8 +500,8 @@ $intA

### ForEach()

Allows to iterate over all elements in the array and perform a given operation
for each element of the array.
Allows you to iterate over all elements in the array and perform a given
operation for each element of the array.

The `ForEach()` method has several overloads that perform different operations.

Expand Down Expand Up @@ -667,10 +667,10 @@ to accept them.

### Where()

Allows to filter or select the elements of the array. The script must evaluate
to anything different than: zero (0), empty string, `$false` or `$null` for the
element to show after the `Where()`. For more information about boolean
evaluation, see [about_Booleans][04].
Allows you to filter or select the elements of the array. The script must
evaluate to anything different than: zero (0), empty string, `$false` or
`$null` for the element to show after the `Where()`. For more information about
boolean evaluation, see [about_Booleans][04].

There is one definition for the `Where()` method.

Expand Down
12 changes: 6 additions & 6 deletions reference/7.5/Microsoft.PowerShell.Core/About/about_Arrays.md
Original file line number Diff line number Diff line change
Expand Up @@ -500,8 +500,8 @@ $intA

### ForEach()

Allows to iterate over all elements in the array and perform a given operation
for each element of the array.
Allows you to iterate over all elements in the array and perform a given
operation for each element of the array.

The `ForEach()` method has several overloads that perform different operations.

Expand Down Expand Up @@ -667,10 +667,10 @@ to accept them.

### Where()

Allows to filter or select the elements of the array. The script must evaluate
to anything different than: zero (0), empty string, `$false` or `$null` for the
element to show after the `Where()`. For more information about boolean
evaluation, see [about_Booleans][04].
Allows you to filter or select the elements of the array. The script must
evaluate to anything different than: zero (0), empty string, `$false` or
`$null` for the element to show after the `Where()`. For more information about
boolean evaluation, see [about_Booleans][04].

There is one definition for the `Where()` method.

Expand Down
12 changes: 6 additions & 6 deletions reference/7.6/Microsoft.PowerShell.Core/About/about_Arrays.md
Original file line number Diff line number Diff line change
Expand Up @@ -500,8 +500,8 @@ $intA

### ForEach()

Allows to iterate over all elements in the array and perform a given operation
for each element of the array.
Allows you to iterate over all elements in the array and perform a given
operation for each element of the array.

The `ForEach()` method has several overloads that perform different operations.

Expand Down Expand Up @@ -674,10 +674,10 @@ to accept them.

### Where()

Allows to filter or select the elements of the array. The script must evaluate
to anything different than: zero (0), empty string, `$false` or `$null` for the
element to show after the `Where()`. For more information about boolean
evaluation, see [about_Booleans][04].
Allows you to filter or select the elements of the array. The script must
evaluate to anything different than: zero (0), empty string, `$false` or
`$null` for the element to show after the `Where()`. For more information about
boolean evaluation, see [about_Booleans][04].

There is one definition for the `Where()` method.

Expand Down
12 changes: 6 additions & 6 deletions reference/7.7/Microsoft.PowerShell.Core/About/about_Arrays.md
Original file line number Diff line number Diff line change
Expand Up @@ -500,8 +500,8 @@ $intA

### ForEach()

Allows to iterate over all elements in the array and perform a given operation
for each element of the array.
Allows you to iterate over all elements in the array and perform a given
operation for each element of the array.

The `ForEach()` method has several overloads that perform different operations.

Expand Down Expand Up @@ -674,10 +674,10 @@ to accept them.

### Where()

Allows to filter or select the elements of the array. The script must evaluate
to anything different than: zero (0), empty string, `$false` or `$null` for the
element to show after the `Where()`. For more information about boolean
evaluation, see [about_Booleans][04].
Allows you to filter or select the elements of the array. The script must
evaluate to anything different than: zero (0), empty string, `$false` or
`$null` for the element to show after the `Where()`. For more information about
boolean evaluation, see [about_Booleans][04].

There is one definition for the `Where()` method.

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
description: When writing a binary PowerShell module in C#, it's natural to take dependencies on other packages or libraries to provide functionality.
ms.date: 08/08/2022
ms.date: 09/14/2026
title: Resolving PowerShell module assembly dependency conflicts
---
# Resolving PowerShell module assembly dependency conflicts
Expand Down Expand Up @@ -879,7 +879,6 @@ jumping off points:
- [PowerShell: `Assembly.LoadFile()` doesn't load into default AssemblyLoadContext][12052]
- [Rick Strahl: When does a .NET assembly dependency get loaded?][30]
- [Jon Skeet: Summary of versioning in .NET][18]
- [Nate McMaster: Deep dive into .NET Core primitives][27]

<!-- link references -->
[01]: ./media/resolving-dependency-conflicts/alc-diagram.jpg
Expand All @@ -905,7 +904,6 @@ jumping off points:
[24]: https://github.com/PowerShell/PowerShellEditorServices/blob/master/src/PowerShellEditorServices.Hosting/Internal/PsesLoadContext.cs
[25]: https://github.com/PSBicep/PSBicep
[26]: https://github.com/rjmholt/ModuleDependencyIsolationExample
[27]: https://natemcmaster.com/blog/2017/12/21/netcore-primitives/
[28]: https://pipe.how/get-assemblyloadcontext/
[29]: https://stackoverflow.com/questions/43365736/assembly-binding-redirect-how-and-why
[30]: https://weblog.west-wind.com/posts/2012/Nov/03/Back-to-Basics-When-does-a-NET-Assembly-Dependency-get-loaded
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
description: Get-Member is a powerful tool that allows to see the type and structure of objects in PowerShell.
description: Get-Member is a powerful tool that allows you to see the type and structure of objects in PowerShell.
ms.date: 12/08/2022
title: Viewing object structure
---
Expand Down