Answers for "c# add item into list"

C#
12

c# adding to a list

//Declaring that its a list
List<string> test = new List<string>(); 
test.Add("Hello")
Posted by: Guest on March-02-2020
1

how to add data in list in c#

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);
Posted by: Guest on May-27-2021

C# Answers by Framework

Browse Popular Code Answers by Language