CompatibilityArray class

From Catglobe Wiki
Revision as of 10:37, 5 July 2018 by Nguyenduyan (talk | contribs)
Jump to: navigation, search

CompatibilityArray



Maps cgs array to internal list for compatibility.


Methods

  • Empty Add(object element "element to add") - Add a new element to the Array
  • Empty AddRange(array source "Array to get elements from.") - Add all elements of another array to this array.
  • bool Contains(object element "Element to check for") - Return true if the array contains the element using the normal equal operator.
  • object this[] { get; }(int index "Index") - Backward-compatible indexer
  • Empty RemoveItemAt(int index "The index to remove the object from") - Remove an element from the Array
  • Empty this[] { set; }(int index "Index", object value "Value to set") - Backward-compatible indexer
  • string ToString() - The string representation of the object.

Properties

  • int Count { get; } - Number of elements in Array
  • string ObjectTypeName { get; } - The name of the type of object.
  • TypeInformation TypeInformation { get; } - Get information about this class.