In this Blog we are going to see. How to Convert ARRAY to Generic
List using C#
Used Namespace:
using System.Collections.Generic;
Code Snippet:
/// <summary>
/// This Converts List To
Array
/// </summary>
public void
ConvertingArrayToLIst()
{
//Declare Array
string[] array = { "Lajapathy",
"Arun" };
//Convert Array to List
List<string>
list = new List<string>(array);

Gowtham RajamanickamPosted Apr 1, 2015, 4:31 AM
good