Прочетете на английски Редактиране

Споделяне чрез


ImmutableArrayExtensions.Last Method

Definition

Overloads

Last<T>(ImmutableArray<T>.Builder)

Returns the last element in the collection.

Last<T>(ImmutableArray<T>, Func<T,Boolean>)

Returns the last element of a sequence that satisfies a specified condition.

Last<T>(ImmutableArray<T>)

Returns the last element of the array.

Last<T>(ImmutableArray<T>.Builder)

Source:
ImmutableArrayExtensions.cs
Source:
ImmutableArrayExtensions.cs
Source:
ImmutableArrayExtensions.cs
Source:
ImmutableArrayExtensions.cs

Returns the last element in the collection.

C#
public static T Last<T>(this System.Collections.Immutable.ImmutableArray<T>.Builder builder);

Type Parameters

T

The type of item in the builder.

Parameters

builder
ImmutableArray<T>.Builder

The builder to retrieve elements from.

Returns

T

The last element in the builder.

Exceptions

The collection is empty.

Applies to

.NET 10 и други версии
Продукт Версии
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8 (package-provided), 8, 9 (package-provided), 9, 10 (package-provided), 10
.NET Standard 2.0 (package-provided)
UWP 10.0

Last<T>(ImmutableArray<T>, Func<T,Boolean>)

Source:
ImmutableArrayExtensions.cs
Source:
ImmutableArrayExtensions.cs
Source:
ImmutableArrayExtensions.cs
Source:
ImmutableArrayExtensions.cs

Returns the last element of a sequence that satisfies a specified condition.

C#
public static T Last<T>(this System.Collections.Immutable.ImmutableArray<T> immutableArray, Func<T,bool> predicate);

Type Parameters

T

The type of element contained by the collection.

Parameters

immutableArray
ImmutableArray<T>

The array to retrieve elements from.

predicate
Func<T,Boolean>

The delegate that defines the conditions of the element to retrieve.

Returns

T

The last element of the array that satisfies the predicate condition.

Exceptions

The collection is empty.

Applies to

.NET 10 и други версии
Продукт Версии
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8 (package-provided), 8, 9 (package-provided), 9, 10 (package-provided), 10
.NET Standard 2.0 (package-provided)
UWP 10.0

Last<T>(ImmutableArray<T>)

Source:
ImmutableArrayExtensions.cs
Source:
ImmutableArrayExtensions.cs
Source:
ImmutableArrayExtensions.cs
Source:
ImmutableArrayExtensions.cs

Returns the last element of the array.

C#
public static T Last<T>(this System.Collections.Immutable.ImmutableArray<T> immutableArray);

Type Parameters

T

The type of element contained by the array.

Parameters

immutableArray
ImmutableArray<T>

The array to retrieve items from.

Returns

T

The last element in the array.

Exceptions

The collection is empty.

Applies to

.NET 10 и други версии
Продукт Версии
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8 (package-provided), 8, 9 (package-provided), 9, 10 (package-provided), 10
.NET Standard 2.0 (package-provided)
UWP 10.0