Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在尝试将数字从 numericupdown 的值转换为 int32 时,它给了我错误的数字,我逐步调试并调试了它,它甚至显示为 numeric up down 的值为 3,但它是 int存储在以 2 的形式出现。我真的不知道它为什么这样做
int max = Convert.ToInt32(Sale.numericUpDown3.Value);
当调试值显示为 3,但最大值显示为 2 时,这意味着稍后使用 max 时,它会从我的数据表中的错误行中检索数据。这发生在任何人身上吗?:S
因此我从来没有看到过这个问题,并且想知道它到底是怎么做到的,有点让人头疼,但一个简单的解决方案!谢谢直到谁指出这可能是时间问题,解决了我的问题!