我在城堡windsor配置中配置了字典,其中键类型为字符串,值类型为 float :
<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
有谁熟悉这个案子?