C# Класс Hiro.TypeFilterPredicateExtensions

A helper class that makes easy to build aggregated type predicate expressions.
Показать файл Открыть проект

Открытые методы

Метод Описание
And ( bool>.this condition, bool>.Func otherCondition ) : bool>.Func

Combines (logically ANDs) two predicate expressions together.

Not ( bool>.this condition ) : bool>.Func

Negates the given <condition.

Or ( bool>.this condition, bool>.Func otherCondition ) : bool>.Func

Combines (logically ORs) two predicate expressions together.

Описание методов

And() публичный статический Метод

Combines (logically ANDs) two predicate expressions together.
public static And ( bool>.this condition, bool>.Func otherCondition ) : bool>.Func
condition bool>.this The first condition.
otherCondition bool>.Func The second condition.
Результат bool>.Func

Not() публичный статический Метод

Negates the given <condition.
public static Not ( bool>.this condition ) : bool>.Func
condition bool>.this The predicate that will be logically negated
Результат bool>.Func

Or() публичный статический Метод

Combines (logically ORs) two predicate expressions together.
public static Or ( bool>.this condition, bool>.Func otherCondition ) : bool>.Func
condition bool>.this The first condition.
otherCondition bool>.Func The second condition.
Результат bool>.Func