EnumerableExtensions.

OnlyOrDefault<T>(IEnumerable<T>) Method

Summary

Returns the single element of the sequence, or default if the sequence is empty or contains more than one element.
Namespace
GitVersion.Extensions
Containing Type
EnumerableExtensions

Syntax

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

Type Parameters

Name Description
T

Parameters

Name Type Description
source IEnumerable<T>

Return Value

Type Description
T
GitHub