<i id='yuvF7'><tr id='yuvF7'><dt id='yuvF7'><q id='yuvF7'><span id='yuvF7'><b id='yuvF7'><form id='yuvF7'><ins id='yuvF7'></ins><ul id='yuvF7'></ul><sub id='yuvF7'></sub></form><legend id='yuvF7'></legend><bdo id='yuvF7'><pre id='yuvF7'><center id='yuvF7'></center></pre></bdo></b><th id='yuvF7'></th></span></q></dt></tr></i><div id='yuvF7'><tfoot id='yuvF7'></tfoot><dl id='yuvF7'><fieldset id='yuvF7'></fieldset></dl></div>
  • <small id='yuvF7'></small><noframes id='yuvF7'>

      <bdo id='yuvF7'></bdo><ul id='yuvF7'></ul>
  • <tfoot id='yuvF7'></tfoot><legend id='yuvF7'><style id='yuvF7'><dir id='yuvF7'><q id='yuvF7'></q></dir></style></legend>

      1. 如何在 C# 中将小数转换为 int?

        时间:2023-07-25
      2. <tfoot id='lEoDf'></tfoot>

        <small id='lEoDf'></small><noframes id='lEoDf'>

          <legend id='lEoDf'><style id='lEoDf'><dir id='lEoDf'><q id='lEoDf'></q></dir></style></legend>

              <tbody id='lEoDf'></tbody>
                • <bdo id='lEoDf'></bdo><ul id='lEoDf'></ul>
                • <i id='lEoDf'><tr id='lEoDf'><dt id='lEoDf'><q id='lEoDf'><span id='lEoDf'><b id='lEoDf'><form id='lEoDf'><ins id='lEoDf'></ins><ul id='lEoDf'></ul><sub id='lEoDf'></sub></form><legend id='lEoDf'></legend><bdo id='lEoDf'><pre id='lEoDf'><center id='lEoDf'></center></pre></bdo></b><th id='lEoDf'></th></span></q></dt></tr></i><div id='lEoDf'><tfoot id='lEoDf'></tfoot><dl id='lEoDf'><fieldset id='lEoDf'></fieldset></dl></div>

                  本文介绍了如何在 C# 中将小数转换为 int?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  如何将小数转换为整数?

                  How do I convert a decimal to an int?

                  推荐答案

                  使用 Convert.ToInt32 from mscorlib as in

                  Use Convert.ToInt32 from mscorlib as in

                  decimal value = 3.14m;
                  int n = Convert.ToInt32(value);
                  

                  请参阅 MSDN.您也可以使用 Decimal.ToInt32.同样,请参阅 MSDN.最后,您可以像中一样进行直接投射

                  See MSDN. You can also use Decimal.ToInt32. Again, see MSDN. Finally, you can do a direct cast as in

                  decimal value = 3.14m;
                  int n = (int) value;
                  

                  使用显式转换运算符.请参阅 MSDN.

                  which uses the explicit cast operator. See MSDN.

                  这篇关于如何在 C# 中将小数转换为 int?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:为什么空字符串上的 .ToString() 会导致空错误,而 .ToString() 在具有空值的可空 int 上工作正 下一篇:在 C# 中将 double 转换为 int

                  相关文章

                  <legend id='gZ8jm'><style id='gZ8jm'><dir id='gZ8jm'><q id='gZ8jm'></q></dir></style></legend>

                  <i id='gZ8jm'><tr id='gZ8jm'><dt id='gZ8jm'><q id='gZ8jm'><span id='gZ8jm'><b id='gZ8jm'><form id='gZ8jm'><ins id='gZ8jm'></ins><ul id='gZ8jm'></ul><sub id='gZ8jm'></sub></form><legend id='gZ8jm'></legend><bdo id='gZ8jm'><pre id='gZ8jm'><center id='gZ8jm'></center></pre></bdo></b><th id='gZ8jm'></th></span></q></dt></tr></i><div id='gZ8jm'><tfoot id='gZ8jm'></tfoot><dl id='gZ8jm'><fieldset id='gZ8jm'></fieldset></dl></div>
                  • <bdo id='gZ8jm'></bdo><ul id='gZ8jm'></ul>

                      <small id='gZ8jm'></small><noframes id='gZ8jm'>

                      <tfoot id='gZ8jm'></tfoot>