User Tools

Site Tools

blog:2024-01-09_vc_clr_rounding



2024-01-09 VC++/CLR: Rounding

  • float _testData = 3.5
    int _i1 = (Int32)(_testData);
    int _i2 = Convert:ToInt32(_testData);
  • Result:
  • _i1 = 3
    _i2 = 4

TAGS

  • 48 person(s) visited this page until now.

Permalink blog/2024-01-09_vc_clr_rounding.txt · Last modified: 2024/01/09 17:24 by jethro

oeffentlich