using System; using System.Collections.Generic; using System.Text; namespace BrazilTimestampReconstruction { class AnchorPoint { Int16 node1, node2, rc1, rc2; Int64 lc1, lc2; public AnchorPoint(Int16 node1, Int64 lc1, Int16 rc1, Int16 node2, Int64 lc2, Int16 rc2) { this.node1 = node1; this.lc1 = lc1; this.rc1 = rc1; this.node2 = node2; this.lc2 = lc2; this.rc2 = rc2; } public Int16 Node1 { get { return node1; } set { node1 = value; } } public Int16 Node2 { get { return node2; } set { node2 = value; } } public Int64 Lc1 { get { return lc1; } set { lc1 = value; } } public Int64 Lc2 { get { return lc2; } set { lc2 = value; } } public Int16 Rc1 { get { return rc1; } set { rc1 = value; } } public Int16 Rc2 { get { return rc2; } set { rc2 = value; } } internal void GetKey(out string segment1, out string segment2) { throw new Exception("The method or operation is not implemented."); } } }