Recent content by bronumski

  1. B

    C# Converting integer into array of single digits in C#?

    The conversion to an int array is not quite right. The Convert.ToInt32 will convert the char to its equivalent decimal value which is not the same as parsing it. e.g. the character '1' will be converted to 49. Instead you will have to use the int.Parse which will require casting the char to a...
Back
Top