7

我需要从 a 解析一个值DataRow并将其分配给另一个DataRow. 如果输入有效,那么我需要将其解析为 a double,或者DBNull向输出添加一个值。我正在使用以下代码:

public double? GetVolume(object data)
{
    string colValue = data == null ? string.Empty : data.ToString();
    double volume;

    if (!Double.TryParse(colValue.ToString(), out volume))
    {
        return null;
    }
    return volume;
}

public void Assign(DataRow theRowInput,DataRow theRowOutput)
{
    double? volume = GetVolume(theRowInput[0]);

    if(volumne.HasValue)
    theRowOutput[0] = volume.value;
    else
    theRowOutput[0] = DbNull.Value;

    return theRowOutput;
}

有更好的方法吗?

4

3 回答 3

14

怎么样:

    public double? GetVolume(object data)
    {
        double value;
        if (data != null && double.TryParse(data.ToString(), out value))
            return value;
        return null;
    }

    public void Assign(DataRow theRowInput, DataRow theRowOutput)
    {
        theRowOutput[0] = (object)GetVolume(theRowInput[0]) ?? DBNull.Value;
    }
于 2011-02-17T07:11:31.003 回答
0

像这样简单的东西怎么样:

double dbl;
if (double.TryParse(theRowInput[0] as string, out dbl))
    theRowOutput[0] = dbl;
else
    theRowOutput[0] = DbNull.Value;

编辑:此代码假定输入是字符串类型。你在那里不是100%清楚。如果它是另一种类型,则需要稍微调整上面的代码。

于 2011-02-17T07:11:07.210 回答
0

这是我的两个凌乱的美分:

decimal dParse;
if ((cells[13] == "" ? LP_Eur = DBNull.Value : (Decimal.TryParse(cells[13], NumberStyles.Number, NumberFormat, out dParse) ? LP_Eur = dParse : LP_Eur = null)) != null) {
    throw new Exception("Ivalid format");
}
于 2013-08-20T14:48:38.583 回答