Create referencing copy of this array
| C# | Visual Basic | Visual C++ |
public abstract ILBaseArray CreateReference()
Public MustOverride Function CreateReference As ILBaseArray
public: virtual ILBaseArray^ CreateReference() abstract
Reference of this ILArray
This function is mainly needed for ILCell. Elements of ILCells given back must be
detached from their originals in order not to overwrite them on write access. Since ILCell
may store any types of arrays (ILBaseArray's) and the actual type is not known, ILBaseArrays
must be capable of creating a copy of themself. For generic ILArray's this is done in the
CreateReference()()() class.