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

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

For a given object, returns its unique ID. The new ID is used if object was not presented to this class earlier, otherwise the previously returned is used.
public GetId ( object o ) : int
o object /// An object to give unique ID for. ///
Результат int
        public int GetId(object o)
        {
            bool fake;
            return GetId(o, out fake);
        }

Same methods

ObjectIdentifier::GetId ( object o, bool &isNew ) : int