summaryrefslogtreecommitdiff
path: root/DSALib/Auxiliary/Extensions.cs
diff options
context:
space:
mode:
authoruzvkl <dennis.kobert@student.kit.edu>2019-06-11 23:05:52 +0200
committeruzvkl <dennis.kobert@student.kit.edu>2019-06-11 23:05:52 +0200
commite6181c24124d97f2fbc932b8a68311e625463156 (patch)
treec1f097c344ca266b7941c9668590b0fd35c7870a /DSALib/Auxiliary/Extensions.cs
parent2490ad5d31fe2ac778ff9303776f0e91f47a2862 (diff)
Move dsa related stuff to subfolder
Diffstat (limited to 'DSALib/Auxiliary/Extensions.cs')
-rw-r--r--DSALib/Auxiliary/Extensions.cs25
1 files changed, 0 insertions, 25 deletions
diff --git a/DSALib/Auxiliary/Extensions.cs b/DSALib/Auxiliary/Extensions.cs
deleted file mode 100644
index 7d367a5..0000000
--- a/DSALib/Auxiliary/Extensions.cs
+++ /dev/null
@@ -1,25 +0,0 @@
-namespace DSALib.Auxiliary
-{
- public static class StringExtension
- {
- //This mehod extends string. It adds spaces until a fixed length is reached.
- //If the original string is already longer, it is returner unmodified.
- public static string AddSpaces(this string str, int length)
- {
- var temp = str;
- for (var i = str.Length; i < length; i++) temp += " ";
- return temp;
- }
-
-
- //This mehod extends string.
- //It adds spaces at the HEAD of a string until a fixed length is reached.
- //If the original string is already longer, it is returner unmodified.
- public static string AddSpacesAtHead(this string str, int length)
- {
- var temp = "";
- for (var i = str.Length; i < length; i++) temp += " ";
- return temp + str;
- }
- }
-} \ No newline at end of file