摘要:
备份 cp /etc/apt/sources.list /etc/apt/sources.list.bak 编辑sources.list vim /etc/apt/sources.list 阿里源deb http://mirrors.aliyun.com/ubuntu/ bionic main re 阅读全文
摘要:
昨天突然看到之前写的一个积累文档,其中文档中有一个Linq Any和All的注意事项: 注意Any 和 All var list = new List<int>(); var aa = list.All(n => n > 1); var bb = list.Any(n => n > 1); // a 阅读全文