Antmicro.Migrant.ObjectIdentifier.this C# (CSharp) Method

this() public method

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. ///
return object
        public object this[int id]
        {
            get
            {
                return GetObject(id);
            }
        }