Integer to Integer Array C# [duplicate] April 8, 2024 by Tarik A simple solution using LINQ int[] result = yourInt.ToString().Select(o=> Convert.ToInt32(o) - 48 ).ToArray()