From 6308da656b9bea8383e03831a10663fd40ce0271 Mon Sep 17 00:00:00 2001 From: Aptivi Date: Tue, 5 Mar 2024 14:38:04 +0300 Subject: [PATCH] und - Removed utilities for now --- Type: und Breaking: False Doc Required: False Part: 1/1 --- aptivi.github.io/Utilities/StringExtensions.cs | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 aptivi.github.io/Utilities/StringExtensions.cs diff --git a/aptivi.github.io/Utilities/StringExtensions.cs b/aptivi.github.io/Utilities/StringExtensions.cs deleted file mode 100644 index 7407001..0000000 --- a/aptivi.github.io/Utilities/StringExtensions.cs +++ /dev/null @@ -1,17 +0,0 @@ -using System; - -namespace aptivi.github.io.Utilities -{ - public static class StringExtensions - { - /// - /// Makes a string array with new line as delimiter - /// - /// Target string - /// - internal static string[] SplitNewLines(this string Str) - { - return Str.Replace(Convert.ToChar(13), default).Split(Convert.ToChar(10)); - } - } -}