Esempio n. 1
0
        public override bool connect(connectable <T> target)
        {
            if (target.GetType() != typeof(Output <T>))
            {
                return(false);
            }

            this.add_connection(target);
            target.add_connection(this);
            return(true);
        }