Creates a new List, copies its elements from another Sofu.List;

C# |
public List( List copyFrom )

- copyFrom (List)
- Other List to copy from


Sofu.Sofu.Map config = SofuReader.LoadFile("Config.Sofu"); Sofu.Sofu.List donetargets = new Sofu.Sofu.List(config.list("BuildTargets")); donetargets.AppendElement("x64"); //Won't change config.list("BuildTargets")