重学c#系列——linq(1) [二十七]
查看原文
内容简介:
前言
简单介绍一下linq,linq很多人其实用的很熟练了,但是有些人不知道自己用的是linq。
正文
在介绍linq 之前,先介绍一下集合。
public interface ICollection : IEnumerable, IEnumerable
{
int Count { get; }
bool IsReadOnly { get; }
void Add(T item);
void Clear();
bool Contains(T item);
void CopyTo(T[] array, int arrayIndex);
bool Remove(T item);
}
什么是集合呢?在c# 中拥有上面功...
?更多精彩头条内容,请收藏程序员导航网,为您提供一站式码农必备网址大全,持续为您输出优质站点和IT信息!
暂无评论...