コード例 #1
0
 /// <summary>
 /// The PointPair4 copy constructor.
 /// </summary>
 /// <param name="rhs">The basis for the copy.</param>
 public PointPair4(PointPair4 rhs)
     : base(rhs)
 {
     T = rhs.T;
 }
コード例 #2
0
 /// <summary>
 /// The PointPair4 copy constructor.
 /// </summary>
 /// <param name="rhs">The basis for the copy.</param>
 public PointPair4(PointPair4 rhs) : base(rhs)
 {
     T = rhs.T;
 }
コード例 #3
0
ファイル: PointPair4.cs プロジェクト: 15835229565/ZedGraph-3
 /// <summary>
 /// The PointPair4 copy constructor.
 /// </summary>
 /// <param name="rhs">The basis for the copy.</param>
 public PointPair4(PointPair4 rhs) : base((IPointPair)rhs)
 {
     this.T = rhs.T;
 }