CLR Interop

  • Updated

irScript supports collection operations on any IEnumerable or IList subclassed instance, not merely ScriptCollections created in irScript proper.

The methods allowed on an IEnumerable instance include:

  • ForEach
  • Reverse
  • Filter
  • Transform
  • Union
  • Intersect
  • GetRange
  • TrueForAll
  • TrueForAny
  • OrderBy

The methods allowed on an IList instance include:

  • Any method allowed on an IEnumerable (IList inherits from IEnumerable)
  • Add
  • Insert
  • RemoveAt
  • Clear
  • AddRange
  • InsertRange
  • RemoveRange
  • Push
  • Pop
  • Enqueue
  • Dequeue

Was this article helpful?

0 out of 0 found this helpful

Comments

0 comments

Please sign in to leave a comment.