C# code to create a List and initialize to another list then adding the new item in List var dnfLst_1 = new List<int>() { 90, 70, 30, 10, 60, 50, 40 };
var dnfLst_2 = new List<int>(dnfLst_1);
dnfLst_2.Add(80);
Result
dnfLst_2 90, 70, 30, 10, 60, 50, 40, 80