C#的cast问题
Contents
这篇Not everything derives from object - Fabulous Adventures In Coding - Site Home - MSDN Blogs文章讲了为什么在C#里面
1 | var enumerable = from bool b in new int[] {1, 2} select b; |
这个可以编译通过,但是运行会抛exception。
这篇Not everything derives from object - Fabulous Adventures In Coding - Site Home - MSDN Blogs文章讲了为什么在C#里面
1 | var enumerable = from bool b in new int[] {1, 2} select b; |
这个可以编译通过,但是运行会抛exception。