Exemplo n.º 1
0
 internal void ToIntegerTriangle(ref IntegerTriangle destination)
 {
     destination.A = this.A;
     destination.B = this.B;
     destination.C = this.C;
 }
Exemplo n.º 2
0
 internal IntegerTriangle[] ToArray()
 {
     IntegerTriangle[] result = new IntegerTriangle[this.TrianglesCount];
     this.CopyTo(result, 0);
     return(result);
 }