blob: 5ed9ee38c675a3ace39e48ec4e93202a3329e0bb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
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();
}
}
}
|