How to convert int array to int?

前端 未结 12 1950
小蘑菇
小蘑菇 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:30

    int result = 0;
    int[] arr = { 1, 2, 3, 4};
    int multipicator = 1;
    for (int i = arr.Length - 1; i >= 0; i--)
    {
       result += arr[i] * multipicator;
       multipicator *= 10;
    }
    

提交回复
热议问题