728x90
Action과 Func처럼 Predicate도 delegate형식인데
인자는 1개만 지정 가능하고 반환은 무조건 bool타입이다.
Predicate<string> p = str => str.StartsWith("LeafC");
string str = "LeafC's blog";
bool res = p(str);
728x90
'C# > C# 기본' 카테고리의 다른 글
async/await (0) | 2024.08.06 |
---|---|
Extension (0) | 2023.05.16 |
Reflection (리플렉션) (1) | 2023.05.16 |
Property(Getter, Setter) (0) | 2023.05.16 |
Delegate (1) | 2023.05.16 |