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

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

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 this ( int id ) : object
id int /// The unique ID, previously returned by the method. ///
Результат object
        public object this[int id]
        {
            get
            {
                return GetObject(id);
            }
        }