From cd1584eee708056e12ef438184995a8f113b3e1f Mon Sep 17 00:00:00 2001 From: glax Date: Sat, 1 Apr 2023 00:39:37 +0200 Subject: [PATCH] Adjusted ToString() to include startId --- OSMDatastructure/OsmWay.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OSMDatastructure/OsmWay.cs b/OSMDatastructure/OsmWay.cs index 7557a66..dd8e8da 100644 --- a/OSMDatastructure/OsmWay.cs +++ b/OSMDatastructure/OsmWay.cs @@ -19,6 +19,6 @@ public class OsmWay public override string ToString() { - return $"EDGE WayID: {wayId} NeighborID: {neighborId} {neighborRegion}"; + return $"EDGE WayID: {wayId} StartID: {startId} NeighborID: {neighborId} in {neighborRegion}"; } } \ No newline at end of file