// Links the output of this computer to the input of the target computer. public void OutputTo(V3 target) { target.Input = Output; }
public V3(V3 source) { Memory = new int[source.Memory.Length]; Array.Copy(source.Memory, Memory, Memory.Length); }