3 references to Insert
Microsoft.VisualBasic.Core (3)
Microsoft\VisualBasic\Collection.vb (3)
82
m_ItemsList.
Insert
(CInt(Before) - 1, newNode) 'Convert from 1 based to 0 based.
97
m_ItemsList.
Insert
(CInt(After), newNode) 'Conversion from 1 based to 0 based offsets need to add 1.
673
m_ItemsList.
Insert
(index, newNode) 'FastList is 0-indexed just like IList, so no transformation of "index" needed