Show / Hide Table of Contents

Class IEnumerableExtensions

Extension methods for IEnumerable<T>.

Inheritance
object
IEnumerableExtensions
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Microsoft.XboxStudios.GameStateTracker.Unreal
Assembly: GameStateTracker.Unreal.dll
Syntax
public static class IEnumerableExtensions

Methods

View Source

WithoutLast<T>(IEnumerable<T>)

Gets a new enumerable without the last item.

Declaration
public static IEnumerable<T> WithoutLast<T>(this IEnumerable<T> source)
Parameters
Type Name Description
IEnumerable<T> source

The enumerable being extended.

Returns
Type Description
IEnumerable<T>

A new enumerable without the last item.

Type Parameters
Name Description
T

The enumeration type.

  • View Source
In this article
Back to top Generated by DocFX