[This is preliminary documentation and is subject to change.]

Filters a collection of players, leaving only those who are NOT ignoring the given player.

Namespace: fCraft
Assembly: fCraft (in fCraft.dll) Version: 0.6.3.0 (0.6.3.0)

Syntax

   
 C# 
public static IEnumerable<Player> NotIgnoring(
	this IEnumerable<Player> source,
	Player player
)

Parameters

source
IEnumerable<(Of <(<'Player>)>)>
Original collection of players. Will not get modified.
player
Player
Player whose ignore standing is being checked.

Return Value

Filtered collection of players.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IEnumerable<(Of <(<'Player>)>)>. When you use instance method syntax to call this method, omit the first parameter.

See Also