Antmicro.Migrant.ObjectIdentifier.GetObject C# (CSharp) Метод

GetObject() публичный Метод

For an ID which was previously returned by the Antmicro.Migrant.ObjectIdentifier.GetId(object, out bool) method, returns an object for which this ID was generated.
public GetObject ( int id ) : object
id int /// The unique ID, previously returned by the method. ///
Результат object
        public object GetObject(int id)
        {
            if(idToObject.Count <= id || id < 0)
            {
                throw new ArgumentOutOfRangeException("id");
            }
            return idToObject[id];
        }