summaryrefslogtreecommitdiff
path: root/DSACore/Auxiliary/Calculator/Argument.cs
diff options
context:
space:
mode:
Diffstat (limited to 'DSACore/Auxiliary/Calculator/Argument.cs')
-rw-r--r--DSACore/Auxiliary/Calculator/Argument.cs35
1 files changed, 0 insertions, 35 deletions
diff --git a/DSACore/Auxiliary/Calculator/Argument.cs b/DSACore/Auxiliary/Calculator/Argument.cs
deleted file mode 100644
index 5ed9ee3..0000000
--- a/DSACore/Auxiliary/Calculator/Argument.cs
+++ /dev/null
@@ -1,35 +0,0 @@
-using System;
-
-namespace DSACore.Auxiliary.Calculator
-{
- /// <summary>
- /// Provides an ISolvable class to save numbers. The class handles Argument checking and conversion from string to int.
- /// </summary>
- public class Argument : ISolvable
- {
- private readonly int value;
-
- public Argument(string value)
- {
- // check whether the value given is an empty string
- if (string.IsNullOrEmpty(value))
- throw new ArgumentException("Argument kann nicht mit einem leeren string instanziert werden. ",
- nameof(value));
-
- if (!int.TryParse(value, out var result))
- throw new ArgumentException($"Kann {value} nicht in Integer konvertieren");
-
- this.value = result;
- }
-
- public int Solve()
- {
- return value;
- }
-
- public override string ToString()
- {
- return value.ToString();
- }
- }
-} \ No newline at end of file