无法将字符串从隐藏文本框转换为double

时间:2016-02-21 13:41:27

标签: c# asp.net-mvc

在我看来,我通过执行以下代码将值传递给控制器​​

using namespace std;

现在在我的控制器中然后我尝试转换传递值以便稍后操作它,我收到错误FormatException未被usercode处理。 我模型中x_coord的数据类型是double。

#include <iostream>

int main(){  
    union numbericUnion
    {
        int intValue;
        long longValue;
        double doubleValue;
    };
    numbericUnion myUnion;
    myUnion.intValue = 3;
    std::cout << myUnion.intValue << std::endl;
    myUnion.doubleValue = 4.5;
    std::cout << myUnion.doubleValue << std::endl;
    std::cout << myUnion.intValue; 
    std::cout << std::endl;
}

0 个答案:

没有答案