Common Logging 2.0 API Reference

ArgUtils.Coalesce(T) Method

Returns the first nonnull, nonempty value among its arguments.

[Visual Basic]
Public Shared Sub Coalesce(Of T As Class)( _
   ByVal predicate As Predicate(Of T), _
   ParamArray values As T _
)
[C#]
public static T Coalesce<T>(
   Predicate<T> predicate,
   params T[] values
)
where T : class;

Remarks

Also

See Also

ArgUtils Class | Common.Logging.Configuration Namespace