.add c# code example
Example 1: how to add to a list c#
var list = new List<string>();
list.Add("Hello");
Example 2: c# adding to a list
//Declaring that its a list
List<string> test = new List<string>();
test.Add("Hello")
Example 3: c# addcomponent
// Consider an existing GameObject, gameObj
Rigidbody addedComp = gameObj.AddComponent<Rigidbody>() as Rigidbody;
// You can also add custom components by class name