namespace Autodesk.Revit.DB; public partial class ReferenceArrayArray : Autodesk.Revit.DB.APIObject, System.Collections.IEnumerable { public ReferenceArrayArray() { } public virtual void Clear() => throw new System.NotImplementedException(); public virtual Autodesk.Revit.DB.ReferenceArrayArrayIterator ForwardIterator() => throw new System.NotImplementedException(); public virtual Autodesk.Revit.DB.ReferenceArrayArrayIterator ReverseIterator() => throw new System.NotImplementedException(); public virtual System.Collections.IEnumerator GetEnumerator() => throw new System.NotImplementedException(); public virtual Autodesk.Revit.DB.ReferenceArray get_Item(System.Int32 index) => throw new System.NotImplementedException(); public virtual void set_Item(System.Int32 index, Autodesk.Revit.DB.ReferenceArray item) => throw new System.NotImplementedException(); public virtual void Append(Autodesk.Revit.DB.ReferenceArray item) => throw new System.NotImplementedException(); public virtual void Insert(Autodesk.Revit.DB.ReferenceArray item, System.Int32 index) => throw new System.NotImplementedException(); public virtual System.Boolean IsEmpty { get => throw new System.NotImplementedException(); } public virtual System.Int32 Size { get => throw new System.NotImplementedException(); } }