I know C# 3.5 is used with VS2008 and .NET 3.5.
Also C# 4 is part of VS2010 and .Net 4.0 .
But what is C# 5? What IDE?
我知道C#3.5与VS2008和.NET 3.5一起使用。此外,C#4是VS2010和.Net 4.0的一部分。但什么是C#5?什么IDE?
4 个解决方案
#1
92
At the recent PDC, Anders announced:
在最近的PDC上,安德斯宣布:
- We plan to release a "C# 5" product and a "VB 11" product. The exact names of the products have not been announced yet to my knowledge
- 我们计划发布“C#5”产品和“VB 11”产品。据我所知,尚未公布产品的确切名称
- We intend that the "big ticket" feature of C# 5 and VB 11 will be improved asynchronous programming.
- 我们打算将C#5和VB 11的“大票”功能改进为异步编程。
- A prototype version of the "async" feature is available for public download now.
- 现在可以公开下载“异步”功能的原型版本。
- We plan to at some future date release a "compiler as a service" API for C# and VB. You should not expect that to ship at the same time as C# 5 / VB 11; they are separate products.
- 我们计划在将来某个日期发布C#和VB的“编译器即服务”API。您不应期望与C#5 / VB 11同时发货;它们是独立的产品。
Anders specifically did not announce:
安德斯特别没有宣布:
- When we plan to ship any of these products
- 当我们计划运送任何这些产品
- What "ship vehicle" they will go out in; we have not announced a new version of the IDE or the CLR.
- 什么“船舶”他们将出去;我们还没有宣布新版本的IDE或CLR。
- What additional features, if any, will be added to C# 5 or VB 11.
- 如果有的话,还会在C#5或VB 11中添加哪些附加功能。
For more information on the async feature in C#, check out the C# dev center or read my Async articles on the subject.
有关C#中异步功能的更多信息,请查看C#dev中心或阅读有关该主题的Async文章。
#2
7
It's not released yet. Parts of it was presented at this year's PDC (professional developer conference). You can see Anders Hejlsberg's talk online where he explains the new async features that will end up in C# 5.0 when it is released (no dates yet)
它尚未发布。部分内容在今年的PDC(专业开发者大会)上发布。你可以在网上看到Anders Hejlsberg的讲话,他解释了新的异步功能,它将在C#5.0发布时结束(暂无日期)
#3
5
I heard in an announcement that C# 5 comes from Microsoft in Beijing.
我在一份声明中听说C#5来自北京的微软。
- Asynchronous methods
- 异步方法
- Compiler as a service
- 编译器即服务
At the moment I can't find information about .NET 5 or in which IDE it will be released.
目前我找不到有关.NET 5或将在哪个IDE中发布的信息。
More info can be found on the MSDN Forums.
可以在MSDN论坛上找到更多信息。
http://social.msdn.microsoft.com/Forums/en-US/csharplanguage/thread/00cc045a-f9e6-402c-bffb-feb4fe1e0611/
http://social.msdn.microsoft.com/Forums/en-US/csharplanguage/thread/00cc045a-f9e6-402c-bffb-feb4fe1e0611/
#4
5
In case people still following this question. It seems the next framework version will be 4.5 and the next VS version will be 11. I am not sure why it is not 2011, probably because it is 2012 now and it is still in technology preview.
如果人们仍然关注这个问题。似乎下一个框架版本将是4.5,下一个VS版本将是11.我不确定为什么它不是2011年,可能是因为它现在是2012年,它仍然在技术预览中。
What's New for Visual C# in Visual Studio 11 Developer Preview. This prerelease will end on June 30, 2012.
Visual Studio 11开发人员预览版中Visual C#的新增功能。此预发布将于2012年6月30日结束。
http://msdn.microsoft.com/en-us/library/hh156499(v=vs.110).aspx
http://msdn.microsoft.com/en-us/library/hh156499(v=vs.110).aspx
.NET Framework 4.5 Beta
.NET Framework 4.5 Beta
http://msdn.microsoft.com/en-us/netframework/hh854779.aspx
http://msdn.microsoft.com/en-us/netframework/hh854779.aspx
#1
92
At the recent PDC, Anders announced:
在最近的PDC上,安德斯宣布:
- We plan to release a "C# 5" product and a "VB 11" product. The exact names of the products have not been announced yet to my knowledge
- 我们计划发布“C#5”产品和“VB 11”产品。据我所知,尚未公布产品的确切名称
- We intend that the "big ticket" feature of C# 5 and VB 11 will be improved asynchronous programming.
- 我们打算将C#5和VB 11的“大票”功能改进为异步编程。
- A prototype version of the "async" feature is available for public download now.
- 现在可以公开下载“异步”功能的原型版本。
- We plan to at some future date release a "compiler as a service" API for C# and VB. You should not expect that to ship at the same time as C# 5 / VB 11; they are separate products.
- 我们计划在将来某个日期发布C#和VB的“编译器即服务”API。您不应期望与C#5 / VB 11同时发货;它们是独立的产品。
Anders specifically did not announce:
安德斯特别没有宣布:
- When we plan to ship any of these products
- 当我们计划运送任何这些产品
- What "ship vehicle" they will go out in; we have not announced a new version of the IDE or the CLR.
- 什么“船舶”他们将出去;我们还没有宣布新版本的IDE或CLR。
- What additional features, if any, will be added to C# 5 or VB 11.
- 如果有的话,还会在C#5或VB 11中添加哪些附加功能。
For more information on the async feature in C#, check out the C# dev center or read my Async articles on the subject.
有关C#中异步功能的更多信息,请查看C#dev中心或阅读有关该主题的Async文章。
#2
7
It's not released yet. Parts of it was presented at this year's PDC (professional developer conference). You can see Anders Hejlsberg's talk online where he explains the new async features that will end up in C# 5.0 when it is released (no dates yet)
它尚未发布。部分内容在今年的PDC(专业开发者大会)上发布。你可以在网上看到Anders Hejlsberg的讲话,他解释了新的异步功能,它将在C#5.0发布时结束(暂无日期)
#3
5
I heard in an announcement that C# 5 comes from Microsoft in Beijing.
我在一份声明中听说C#5来自北京的微软。
- Asynchronous methods
- 异步方法
- Compiler as a service
- 编译器即服务
At the moment I can't find information about .NET 5 or in which IDE it will be released.
目前我找不到有关.NET 5或将在哪个IDE中发布的信息。
More info can be found on the MSDN Forums.
可以在MSDN论坛上找到更多信息。
http://social.msdn.microsoft.com/Forums/en-US/csharplanguage/thread/00cc045a-f9e6-402c-bffb-feb4fe1e0611/
http://social.msdn.microsoft.com/Forums/en-US/csharplanguage/thread/00cc045a-f9e6-402c-bffb-feb4fe1e0611/
#4
5
In case people still following this question. It seems the next framework version will be 4.5 and the next VS version will be 11. I am not sure why it is not 2011, probably because it is 2012 now and it is still in technology preview.
如果人们仍然关注这个问题。似乎下一个框架版本将是4.5,下一个VS版本将是11.我不确定为什么它不是2011年,可能是因为它现在是2012年,它仍然在技术预览中。
What's New for Visual C# in Visual Studio 11 Developer Preview. This prerelease will end on June 30, 2012.
Visual Studio 11开发人员预览版中Visual C#的新增功能。此预发布将于2012年6月30日结束。
http://msdn.microsoft.com/en-us/library/hh156499(v=vs.110).aspx
http://msdn.microsoft.com/en-us/library/hh156499(v=vs.110).aspx
.NET Framework 4.5 Beta
.NET Framework 4.5 Beta
http://msdn.microsoft.com/en-us/netframework/hh854779.aspx
http://msdn.microsoft.com/en-us/netframework/hh854779.aspx