Skip to content

M_CSharpx_EnumerableExtensions_TailNoFail__1

Moh.Hassan edited this page Oct 10, 2019 · 1 revision

EnumerableExtensions.TailNoFail(T) Method

Return everything except first element without throwing exception if empty.

Namespace: CSharpx
Assembly: CommandLine (in CommandLine.dll) Version: 0.0.0

Syntax

C#

public static IEnumerable<T> TailNoFail<T>(
	this IEnumerable<T> source
)

VB

<ExtensionAttribute>
Public Shared Function TailNoFail(Of T) ( 
	source As IEnumerable(Of T)
) As IEnumerable(Of T)

C++

public:
[ExtensionAttribute]
generic<typename T>
static IEnumerable<T>^ TailNoFail(
	IEnumerable<T>^ source
)

F#

[<ExtensionAttribute>]
static member TailNoFail : 
        source : IEnumerable<'T> -> IEnumerable<'T> 

Parameters

 

source
Type: System.Collections.Generic.IEnumerable(T)

Type Parameters

 

T

Return Value

Type: IEnumerable(T)

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IEnumerable(T). When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

See Also

Reference

EnumerableExtensions Class
CSharpx Namespace

Clone this wiki locally