Introducing Radical.sh

Forget Code launches a powerful code generator for building API's

Converting Array to List in C#

An Array can be converted to List like this

Syntax:
  1. using System.Linq; // Mandatory for the conversion
  2. List<datatype> list = array.ToList();