Appends one element to the end of the List

C# |
public void AppendElement( SofuObject element )

- element (SofuObject)
- Element to append


Sofu.Sofu.List list = new Sofu.Sofu.List(); list.AppendElement(new Sofu.Sofu.Value("Hello World")); list.AppendElement(new Sofu.Sofu.Value("Hello World again")); list.Write("helloworldlist.sofu");