当预期为 0 时,Int32.Parse() 返回 0x0001 - 为什么?

发布于 2024-10-09 09:43:37 字数 282 浏览 0 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

2024-10-16 09:43:37

您是否通过调试窗口进行检查?

检查您是否已在 Visual studio watch 中启用“以十六进制查看”。

Are you checking through debug Window ?

Check if you have enabled Viewing as Hex in Visual studio watch.

梦与时光遇 2024-10-16 09:43:37

int.Parse(string s) 使用默认的 CultureInfo,但是我绝对确定“0”在任何文化中都无法解析为 0x0001(我循环了所有区域性并查看“0”是否会被解析为包含“0x”的其他值)。所以其他地方是错误的。我认为你最好检查一下:

(1) string s = ddlName.SelectedValue.ToString();  //make sure s is "0"
(2) int num = int.Parse(s);  //check if num is 0 or not
(3) myObject.Id = num;   //check the type of myObject.Id(supposed an int/long)
(4) Check the "set" method of myObject.Id (if there is one)

int.Parse(string s) uses the default CultureInfo, 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:

(1) string s = ddlName.SelectedValue.ToString();  //make sure s is "0"
(2) int num = int.Parse(s);  //check if num is 0 or not
(3) myObject.Id = num;   //check the type of myObject.Id(supposed an int/long)
(4) Check the "set" method of myObject.Id (if there is one)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文