gpt4 book ai didi

c# - 将 MySQL Decimal 数据类型转换为 C# float 数据类型

转载 作者:行者123 更新时间:2023-11-29 12:50:28 40 4
gpt4 key购买 nike

我的 MySQL 数据库中有一个 Decimal 数据类型列,我正在 C# 代码中使用 reader.Read() 读取它。现在我需要将其转换为 C# float 据类型。我该怎么做:

float fl = (float)reader[9]; 抛出 System.InvalidCastException

最佳答案

您可以尝试使用Convert.ToSingle方法

float fl = Convert.ToSingle(reader[9]);

关于c# - 将 MySQL Decimal 数据类型转换为 C# float 数据类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24824930/

40 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com