How to convert int array to int?

前端 未结 12 1941
小蘑菇
小蘑菇 2021-01-18 07:49

What I would like to learn how to do is to convert an int array to an int in C#.

However I want to append the int with the values from the array.

Example:

12条回答
  •  借酒劲吻你
    2021-01-18 08:28

    This would be easy, if you have understood how the decimal system works.

    So let me explain that for you: A decimal digit contains single digits by base ten.

    This means you have to iterate through this array (backwards!) and multiply by 10^

    For an example 5624 means: (5*10^3) + (6*10^2) + (2*10^1) + (4*10^0)

    Please consider also: http://en.wikipedia.org/wiki/Horner_scheme

提交回复
热议问题