2

我正在使用转换器将 aList<string>转换为List<UInt32>

它做得很好,但是当数组元素之一不可转换时, ToUint32 throw FormatException

我想通知用户失败的元素。

try
{
    List<UInt32> MyList = SomeStringList.ConvertAll(new Converter<string, UInt32>(element => Convert.ToUInt32(element)));
}

catch (FormatException ex)
{
      //Want to display some message here regarding element.
}

我正在捕获 FormatException 但找不到它是否包含字符串名称。

4

3 回答 3

3

您可以使用以下TryParse方法:

var myList = someStringList.ConvertAll(element =>
{
    uint result;
    if (!uint.TryParse(element, out result))
    {
        throw new FormatException(string.Format("Unable to parse the value {0} to an UInt32", element));
    }
    return result;
});
于 2013-01-13T16:58:10.183 回答
3

您可以在 lambda 中捕获异常:

List<UInt32> MyList = SomeStringList.ConvertAll(new Converter<string, UInt32>(element =>
{
    try
    {
        return Convert.ToUInt32(element);
    }
    catch (FormatException ex)
    {
       // here you have access to element
       return default(uint);
    }
}));
于 2013-01-13T17:00:15.267 回答
0

这是我将在本次比赛中使用的:

List<String> input = new List<String> { "1", "2", "three", "4", "-2" };

List<UInt32?> converted = input.ConvertAll(s =>
{
    UInt32? result;

    try
    {
        result = UInt32.Parse(s);
    }
    catch
    {
        result = null;
        Console.WriteLine("Attempted conversion of '{0}' failed.", s);
    }

    return result;
});

以后您总是可以使用 Where() 方法过滤空值:

Where(u => u != null)
于 2013-01-13T17:20:21.587 回答