Cream.AllenTemporal.AllenVariable.MetBy C# (CSharp) 메소드

MetBy() 공개 메소드

public MetBy ( AllenVariable v ) : void
v AllenVariable
리턴 void
        public virtual void MetBy(AllenVariable v)
        {
            Network net = Network;
            // this met by v
            if (this != v)
            {
                new AllenConstraint(net, AllenEvents.METBY, this, v);
            }
            else
            {
                throw new NotImplementedException("Variable cannot event itself!!");
            }
        }