惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Attack and Defense Labs
Attack and Defense Labs
T
Threatpost
C
Cybersecurity and Infrastructure Security Agency CISA
H
Hackread – Cybersecurity News, Data Breaches, AI and More
I
Intezer
C
Cyber Attacks, Cyber Crime and Cyber Security
The Register - Security
The Register - Security
量子位
Security Latest
Security Latest
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
大猫的无限游戏
大猫的无限游戏
小众软件
小众软件
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
C
CXSECURITY Database RSS Feed - CXSecurity.com
MyScale Blog
MyScale Blog
J
Java Code Geeks
Apple Machine Learning Research
Apple Machine Learning Research
Google DeepMind News
Google DeepMind News
WordPress大学
WordPress大学
Spread Privacy
Spread Privacy
Jina AI
Jina AI
博客园 - 【当耐特】
P
Palo Alto Networks Blog
Last Week in AI
Last Week in AI
SecWiki News
SecWiki News
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
G
GRAHAM CLULEY
宝玉的分享
宝玉的分享
Hacker News - Newest:
Hacker News - Newest: "LLM"
T
The Blog of Author Tim Ferriss
V
Vulnerabilities – Threatpost
有赞技术团队
有赞技术团队
T
Tor Project blog
H
Hacker News: Front Page
A
Arctic Wolf
NISL@THU
NISL@THU
A
About on SuperTechFans
云风的 BLOG
云风的 BLOG
Engineering at Meta
Engineering at Meta
V
V2EX
N
News and Events Feed by Topic
Webroot Blog
Webroot Blog
Know Your Adversary
Know Your Adversary
P
Privacy International News Feed
I
InfoQ
D
Docker
L
LINUX DO - 最新话题
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
U
Unit 42

博客园 - 怀沙

SIGGRAPH 2008 Papers(Updated) [Tips]OSG程序在MFC下报内存泄漏问题的解决方法 我参与的一个作品-《律动》 归来记 反射效果初有成效 毕业设计选定-《基于GPU加速的光线跟踪算法设计》 等待复等待 听李开复在浙大的演讲 关于STL的两个不错的网站 对CSDN的失望 修改相册类别名称的BUG 对动态创建控件属性的访问 安装Visual Studio 2005 Beta2的问题 WinFX SDK Beta1以及一些问题 VS2003到VS2002的转换 Windows Vista 初体验 计划翻译一些东西 (转载).Net中调用Win32动态链接库 明天开始参加考研复习班
准备开始体验C#3.0
怀沙 · 2005-09-19 · via 博客园 - 怀沙

        今天终于把系统搞定了,因为早上看MSDN上发现C# LINQ Preview的运行环境是VS2005 Beta2而不是RC,正好WinFX Sept CTP目前还不支持到VS2005 RC,重新下载的RC镜像就先在硬盘里静静地躺着吧,呵呵.现在可以玩C# 3.0和Avalon了.

  新建项目的时候会出现这样的提示(Visual C# 2005 Express Beta2 English Version),不过新建其它普通项目的时候也会出现就显得烦人了点,呵呵

        This is an unsuppored version of Microsoft C# 3.0.As such many features may not work as expected.

写了一段代码测试了一下:

 1 class LINQTest
 2     {
 3         public void Print()
 4         {
 5             var array = new int[]{1,2,3,4,5};
 6             var numbers = from n in array where n < 4 select n;
 7             foreach(var i in numbers)
 8                 Console.WriteLine (i);
 9         }
10     }

另外,VS2005 RC可以通过下面的方式下载到: