本文介绍了这的功能和好处的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我真的不太了解这种用法​​,它的功能和好处是什么?

I really don''t quite understand this kind of using this, what''s its function and benefit?

public static T FirstOrDefault<T>(this IEnumerable<T> sequence, Predicate<T> test)
{
    foreach (T value in sequence)
        if (test(value))
            return value;
    return default(T);
} 

推荐答案




这篇关于这的功能和好处的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-26 09:45