0

我在 Castle Windsor 配置中配置了字典,其中键类型是字符串,值类型是浮点数

<dictionary keyType="System.String, mscorlib" valueType="System.Single, mscorlib">
                    <entry key="First">5,3</entry>
                    <entry key="Second">5,6</entry>
                    <entry key="Third">5,95</entry>
                </dictionary>

问题是,在 C# 代码中,我将值类型解析为:

First: 53
Second: 56
Third: 595

有熟悉这个案子的吗?

4

0 回答 0