当预期为 0 时,Int32.Parse() 返回 0x0001 - 为什么?
我正在使用 Int32.Parse() 来转换 DropDownList 的值;但是转换后的返回值是:
0x0001
而不是预期的 0
。
我的代码是:
myObject.Id = Int32.Parse(ddlName.SelectedValue);
在本例中所选值为“0”。为什么它返回“0x0001”而不是 0?发生了什么,这是内存寄存器地址吗?
I am using Int32.Parse() to convert the value of a DropDownList; however the returned value after conversion is:
0x0001
instead of the expected 0
.
My code is:
myObject.Id = Int32.Parse(ddlName.SelectedValue);
The selected value is "0" in this case. Why does it return a '0x0001' instead of a 0? What is happening and is that a memory register address?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您是否通过调试窗口进行检查?
检查您是否已在 Visual studio watch 中启用“以十六进制查看”。
Are you checking through debug Window ?
Check if you have enabled Viewing as Hex in Visual studio watch.
int.Parse(string s)
使用默认的CultureInfo
,但是我绝对确定“0”在任何文化中都无法解析为 0x0001(我循环了所有区域性并查看“0”是否会被解析为包含“0x”的其他值)。所以其他地方是错误的。我认为你最好检查一下:int.Parse(string s)
uses the defaultCultureInfo
, however I'm absolutely sure "0" can't be parsed to 0x0001 in any of the cultures(I looped all the cultures and see if "0" will be parsed to other values contains "0x"). So somewhere else is wrong. I think you'd better check: