12345678910111213141516171819202122232425262728 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- namespace EuclideanDistance
- {
-
-
-
- public static class StringExtensions
- {
-
-
-
-
-
-
-
-
-
- public static IEnumerable<double> ToPoint(this string input)
- {
- return string.IsNullOrWhiteSpace(input)
- ? null
- : input.Split(new char[] { ',' }).Select(Double.Parse);
- }
- }
- }
|