xxxxxxxxxx
var names = new List<string>();
names.Add("Brandon");
names.Add("Harry");
xxxxxxxxxx
//Declaring that its a list
List<string> test = new List<string>();
test.Add("Hello")
xxxxxxxxxx
using System;
using System.Collections.Generic;
namespace add_list
{
static void Main(string[] args)
{
List<string> first = new List<string> { "do", "rey", "me" };
List<string> second = new List<string> { "fa", "so", "la", "te" };
first.AddRange(second);
foreach(var e in first)
{
Console.WriteLine(e);
}
}
}
}
xxxxxxxxxx
Add List C# Simplified
var data = new List<TransactionModel>
{
new TransactionModel { ID = 1, Name = "Name 1" },
new TransactionModel { ID = 2, Name = "Name 2" }
};
xxxxxxxxxx
List<geo_tag> abc = new List<geo_tag>();
geo_tag tag = new geo_tag();
tag.latitude = 111;
tag.longitude = 122;
tag.unit = "SSS";
abc.Add(tag);
xxxxxxxxxx
List<string> initialList = new List<string>();
// Put whatever you want in the initial list
List<string> listToAdd = new List<string>();
// Put whatever you want in the second list
initialList.AddRange(listToAdd);