Check out example codes for "c# adding to a list". It will help you in understanding the concepts better.
Code Example 1
//Declaring that its a list
List<string> test = new List<string>();
test.Add("Hello")
Code Example 2
var list = new List<string>();
list.Add("Hello");
Learn ReactJs, React Native from akashmittal.com