在下面的示例数据中,我需要找到与 TransitLine 的 10803 个 TransitMapSegmentID 匹配的 TransitMapSegmentID,这将是 2,因为 101 和 102 匹配。
我已经看了几个小时了,我有点眼花缭乱,希望能得到一些帮助。谢谢!
public class TransitLineSegment
{
public int TransitLineID { get; set; }
public string TransitLineName { get; set; }
public int TransitMapSegmentID { get; set; }
public string HexColor { get; set; }
public double[][] Coordinates { get; set; }
public int Width { get; set; }
}
样本数据
TransitMapSegmentID TransitLineID
101 10803
102 10803
64 10807
67 10807
101 10807
102 10807