How to fix error "Index was out of range must be nonnegative and less than the size of the collection"?
    // Create new List called _identifiers
    private List<string> _identifiers = new List<string>();
    // Add identifiers to the Identifiable object
    public IdentifiableObject (string[] idents)
    {
        for(int i=0; i<idents.Length; i++)
        {
            idents [i] = _identifiers [i];
        }
    }

 
     
    