这几天在玩个程序,突然看到c#采用图toml文件,好用,直观,确实也简单。
不过。。。。。。
github上示例写的
TOML to TomlTable
TOML input file:v
EnableDebug = true
[Server]
Timeout = 1m
[Client]
ServerAddress = "http://127.0.0.1:8080"
Code:
var toml = Toml.ReadFile(filename);
Console.WriteLine("EnableDebug: " + toml.Getbool>("EnableDebug"));
Console.WriteLine("Timeout: " + toml.Get("Server").Get("Timeout"));
Console.WriteLine("ServerAddress: " + toml.Get("Client").Getstring>("ServerAddress"));
Output:
EnableDebug: True
Timeout: 00:01:00
ServerAddress: http://127.0.0.1:8080
TomlTable
isNett's
generic representation of a TomlDocument. It is a hash set based data structure where each key is represented as astring
and each value as aTomlObject
.
Using theTomlTable
representation has the benefit of having TOML metadata – e.g. the Comments – available in the data model.
很好用,于是改了个float类型的参数测试测试,魔咒来了。
Console.WriteLine("ServerAddress: " + toml.Get("Client").Get>("floatXXX"));
读取一切正常,
下一步呢?修改修改?于是看来看去有个Update函数
toml.Get("Server").Update("
floatXXX
",(double)fV);
噩梦,于是1.1存进去变成了值 1.00服务器托管999999046326,怎么测试都不对,这是什服务器托管么鬼
百度https://www.baidu.com/s?ie=UTF-8&tn=62095104_35_oem_dg&wd=1.00999999046326也有这个莫名其妙的数字
百思不得其解,然后下载了https://github.com/paiden/Nett源码看看:
// Values
public static Result Update(this TomlTable table, string key, bool value)
=> Update(table, key, table.CreateAttached(value));
public static Result Update(this TomlTable table, string key, string value)
=> Update(table, key, table.CreateAttached(value));
public static Result Update(this TomlTable table, string key, long value)
=> Update(table, key, table.CreateAttached(value));
public static Result Update(this TomlTable table, string key, double value)
=> Update(table, key, table.CreateAttached(value));
public static Result Update(this TomlTable table, string key, DateTimeOffset value)
=> Update(table, key, table.CreateAttached(value));
public static Result Update(this TomlTable table, string key, TimeSpan value)
=> Update(table, key, table.CreateAttached(value));
琢磨出点门道来了,没有float类型啊,于是改为double,一切风平浪静,回归正常。
OMG,这个。。。。
得出个结论,c#用toml文件读取非整数字请用double,不要用float,decimal倒无所谓,反正编译不过,切记不要用float。
特此记录,避免打击迷茫,也算一个玩程序中的不太有用知识点,算是记录吧。
20240420
服务器托管,北京服务器托管,服务器租用 http://www.fwqtg.net
机房租用,北京机房租用,IDC机房托管, http://www.fwqtg.net
相关推荐: GreptimeDB v0.7 发布 — 全面支持云原生监控场景
【直播预告】程序员逆袭 CEO 分几步? 就在上周,我们公布了 GreptimeDB 2024 路线图,揭示了今年 GreptimeDB 的几个重大版本计划。随着三月初春的到来,首个适用于生产级别的 GreptimeDB 开源版也在万物复苏的“惊蛰”时节如约而…