Skip to content

Instantly share code, notes, and snippets.

@cartermp
Last active November 18, 2015 16:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cartermp/0154c39e996d14c16f98 to your computer and use it in GitHub Desktop.
Save cartermp/0154c39e996d14c16f98 to your computer and use it in GitHub Desktop.
public static string HeyThere(this IEnumerable<Point> pts) =>
$"{pts.Skip(1).Aggregate($"[{pts.First().X},{pts.First().Y},", (curr, p) => $"{curr},{p.X},{p.Y}")}]";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment