Tests if the List has an object at "index".

- index (Int32)
- Index of the object to test for

True if the Obect exists, false otherwise


Sofu.Sofu.Map file = SofuReader.LoadFile("file.sofu"); if (file.list("Buildtragets").HasObject(0)) { Console.WriteLine("Buildtargets has at least one entry"); Consile.Write("That entry is a "); Consile.WriteLine(file.list("Buildtragets").Object(0).TypeString()); }