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

推荐订阅源

S
Security Affairs
美团技术团队
量子位
Google DeepMind News
Google DeepMind News
P
Proofpoint News Feed
小众软件
小众软件
Microsoft Azure Blog
Microsoft Azure Blog
Apple Machine Learning Research
Apple Machine Learning Research
MongoDB | Blog
MongoDB | Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
博客园 - 叶小钗
N
Netflix TechBlog - Medium
大猫的无限游戏
大猫的无限游戏
J
Java Code Geeks
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
C
Cyber Attacks, Cyber Crime and Cyber Security
Recent Announcements
Recent Announcements
Cisco Talos Blog
Cisco Talos Blog
L
LangChain Blog
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
博客园 - 三生石上(FineUI控件)
U
Unit 42
T
Tenable Blog
Security Latest
Security Latest
Scott Helme
Scott Helme
B
Blog
C
Cybersecurity and Infrastructure Security Agency CISA
NISL@THU
NISL@THU
L
Lohrmann on Cybersecurity
A
Arctic Wolf
S
Schneier on Security
C
CXSECURITY Database RSS Feed - CXSecurity.com
酷 壳 – CoolShell
酷 壳 – CoolShell
I
Intezer
Know Your Adversary
Know Your Adversary
云风的 BLOG
云风的 BLOG
有赞技术团队
有赞技术团队
雷峰网
雷峰网
The Cloudflare Blog
Cloudbric
Cloudbric
Latest news
Latest news
Project Zero
Project Zero
S
Secure Thoughts
V
Visual Studio Blog
博客园 - Franky
Application and Cybersecurity Blog
Application and Cybersecurity Blog
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
W
WeLiveSecurity

博客园 - 怀沙

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可以通过下面的方式下载到: