0

我注意到我编写的一个方法提前退出,并且在尝试访问集合中的第一个元素(如 string[] 或 List)时,如果它为空,则不会引发任何异常。例如

var emptyList = new List<string>();
var aha = emptyList.Where(i => i == "four"); 
var props = aha.First();
//anything after here in the same method does not run

这是正确的,这怎么可能是编译器中的一个有用功能?!(使用.Net 4)

编辑完整的winforms程序:

public partial class Form1 : Form
{
    public Form1()
    {
        InitializeComponent();
    }

    private void button1_Click(object sender, EventArgs e)
    {
        var emptyList = new List<string>();
        var aha = emptyList.Where(i => i == "four");
        var props = aha.First(); //throws exception 



        var fdsfsa = 0;
    }


    private void useref() {

        var emptyList = new List<string>();
        var aha = emptyList.Where(i => i == "four");
        var props = aha.First(); //exits method, doesn't throw exception?

        var asdf = 0;
    }

    private void Form1_Load(object sender, EventArgs e)
    {
        useref();
    }
}
4

2 回答 2

3

不,这将失败并带有InvalidOperationException. 我确定您只是在调用代码中捕获了异常。这很容易展示 - 只需将您的确切代码放入一个简短但完整的示例中:

using System.Collections.Generic;
using System.Linq;

class Test
{
    static void Main()
    {
        var emptyList = new List<string>();
        var aha = emptyList.Where(i => i == "four"); 
        var props = aha.First();
    }
}

结果:

Unhandled Exception: System.InvalidOperationException: Sequence contains no elements
   at System.Linq.Enumerable.First[TSource](IEnumerable`1 source)
   at Test.Main()

因此,您的下一步是找出您没有看到异常的原因——我们对此无能为力。

于 2013-08-02T22:57:09.377 回答
0

尝试以下操作:

try {
    var emptyList = new List<string>();
    var aha = emptyList.Where(i => i == "four"); 
    var props = aha.First();
} catch(InvalidOperationException ex) {
    //ex.message
}
于 2013-08-02T23:02:26.477 回答