摘要: public static IEnumerable<TSource> Where<TSource>(this IEnumerable<TSource> source, Func<TSource, bool> predicate) { if (source == null) { ThrowHelper 阅读全文
posted @ 2021-11-20 15:21 vba是最好的语言 阅读(42) 评论(0) 推荐(0) 编辑
摘要: public class MyList<T> { private int _size; internal T[] _items; // Do not rename (binary serialization) private static readonly T[] s_emptyArray = ne 阅读全文
posted @ 2021-11-20 13:51 vba是最好的语言 阅读(54) 评论(0) 推荐(0) 编辑
摘要: // Gets the length of this string // // This is an intrinsic function so that the JIT can recognise it specially // and eliminate checks on character 阅读全文
posted @ 2021-11-20 11:57 vba是最好的语言 阅读(90) 评论(0) 推荐(0) 编辑