C# | Converting an array of one type to an array of another type Last Updated : 11 Jul, 2025 Comments Improve Suggest changes Like Article Like Report Array.ConvertAll(TInput[], Converter<TInput, TOutput>) Method is used to convert an array of one type to an array of another type. Syntax: public static TOutput[] ConvertAll<TInput,TOutput> (TInput[] array, Converter<TInput,TOutput> converter); Here, TInput and TOutput is the source array and target array respectively. Parameters: array: It is the one-dimensional, zero-based Array to convert to a target type. converter: It is a Converter that converts each element from one type to another type. Return Value: This method returns an array of the target type containing the converted elements from the source array. Exception: This method throws ArgumentNullException if the array is null or converter is null. Below programs illustrate the use of Array.ConvertAll(TInput[], Converter<TInput, TOutput>) Method Example 1: CSHARP // C# program to demonstrate // Array.ConvertAll() Method using System; using System.Collections.Generic; public class GFG { // Main Method public static void Main() { try { // Creating and initializing // new the Array of int int[] myArr = {10, 20, 30, 40}; // Display the values of the myArr. Console.WriteLine("Initial Array:"); // calling the PrintIndexAndValues() // method to print PrintIndexAndValues(myArr); // converting int myArr to String conarr String[] conarr = Array.ConvertAll(myArr, new Converter<int, String>(intToString)); // Display the values of the myArr. Console.WriteLine("Converted Array:"); // calling the PrintIndexAndValues() // method to print PrintIndexAndValues(conarr); } catch (ArgumentNullException e) { Console.Write("Exception Thrown: "); Console.Write("{0}", e.GetType(), e.Message); } } // Defining the method // PrintIndexAndValues public static void PrintIndexAndValues(String[] myArr) { for (int i = 0; i < myArr.Length; i++) { Console.WriteLine("{0}", myArr[i]); } Console.WriteLine(); } // Defining the method // PrintIndexAndValues public static void PrintIndexAndValues(int[] myArr) { for (int i = 0; i < myArr.Length; i++) { Console.WriteLine("{0}", myArr[i]); } Console.WriteLine(); } // Defining the method // intToString public static String intToString(int pf) { return pf.ToString(); } } Output: Initial Array: 10 20 30 40 Converted Array: 10 20 30 40 Example 2: CSHARP // C# program to demonstrate // Array.ConvertAll() Method using System; using System.Collections.Generic; public class GFG { // Main Method public static void Main() { try { // Creating and initializing new // the Array of int with null value int[] myArr = null; // converting int myArr to String conarr String[] conarr = Array.ConvertAll(myArr, new Converter<int, String>(intToString)); // calling the PrintIndexAndValues() // method to print PrintIndexAndValues(conarr); } catch (ArgumentNullException e) { Console.Write("Exception Thrown: "); Console.Write("{0}", e.GetType(), e.Message); } } // Defining the method // PrintIndexAndValues public static void PrintIndexAndValues(String[] myArr) { for (int i = 0; i < myArr.Length; i++) { Console.WriteLine("{0}", myArr[i]); } Console.WriteLine(); } // Defining the method // intToString public static String intToString(int pf) { return pf.ToString(); } } Output: Exception Thrown: System.ArgumentNullException Reference: https://learn.microsoft.com/en-us/dotnet/api/system.array.convertall?view=netframework-4.7.2 Comment More infoAdvertise with us R rohitprasad3 Follow Improve Article Tags : C# CSharp-method CSharp-Arrays Explore IntroductionC# Tutorial 4 min read Introduction to .NET Framework 6 min read C# .NET Framework (Basic Architecture and Component Stack) 6 min read C# Hello World 2 min read Common Language Runtime (CLR) in C# 4 min read FundamentalsC# Identifiers 2 min read Data Types in C# 6 min read C# Variables 4 min read C# Literals 5 min read Operators in C# 7 min read C# Keywords 5 min read Control StatementsC# Decision Making (if, if-else, if-else-if ladder, nested if, switch, nested switch) 5 min read C# Switch Statement 4 min read Loops in C# 4 min read C# Jump Statements (Break, Continue, Goto, Return and Throw) 4 min read OOP ConceptsC# Class and Objects 5 min read C# Constructors 5 min read C# Inheritance 6 min read C# Encapsulation 4 min read C# Abstraction 4 min read MethodsMethods in C# 4 min read Method Overloading in C# 4 min read C# | Method Parameters 7 min read C# Method Overriding 9 min read Anonymous Method in C# 3 min read ArraysArrays in C# 6 min read Jagged Arrays in C# 4 min read Array Class in C# 5 min read How to Sort an Array in C# | Array.Sort() Method Set - 1 8 min read How to find the rank of an array in C# 2 min read ArrayListArrayList in C# 6 min read C# ArrayList Class 7 min read C# | Array vs ArrayList 2 min read StringStrings in C# 6 min read C# Verbatim String Literal - @ 5 min read C# String Class 9 min read C# StringBuilder 4 min read C# String vs StringBuilder 3 min read TupleC# Tuple 7 min read C# Tuple Class 3 min read C# ValueTuple 7 min read C# ValueTuple Struct 4 min read IndexersC# Indexers 4 min read C# Multidimensional Indexers 5 min read C# - Overloading of Indexers 3 min read Like