コード例 #1
0
ファイル: V4.cs プロジェクト: Narvius/Advent-of-Code
 // Links the output of this computer to the input of the target computer.
 public void OutputTo(V4 target)
 {
     target.Input = Output;
 }
コード例 #2
0
ファイル: V4.cs プロジェクト: Narvius/Advent-of-Code
 public V4(V4 source)
 {
     Memory = new BigInteger[source.Memory.Length];
     Array.Copy(source.Memory, Memory, Memory.Length);
 }