From 497a9eded3b785f7f96732c447943cc8bbad284b Mon Sep 17 00:00:00 2001 From: TrueDoctor Date: Tue, 17 Jul 2018 21:18:59 +0200 Subject: Added object oriented dice resolving --- DiscoBot/Auxiliary/Calculator/Argument.cs | 38 +++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 DiscoBot/Auxiliary/Calculator/Argument.cs (limited to 'DiscoBot/Auxiliary/Calculator/Argument.cs') diff --git a/DiscoBot/Auxiliary/Calculator/Argument.cs b/DiscoBot/Auxiliary/Calculator/Argument.cs new file mode 100644 index 0000000..2379bfe --- /dev/null +++ b/DiscoBot/Auxiliary/Calculator/Argument.cs @@ -0,0 +1,38 @@ +namespace DiscoBot.Auxiliary.Calculator +{ + using System; + + /// + /// Provides an ISolvable class to save numbers. The class handles Argument checking and conversion from string to int. + /// + 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 int result)) + { + throw new ArgumentException($"Kann {value} nicht in Integer konvertieren"); + } + + this.value = result; + } + + public int Solve() + { + return this.value; + } + + public override string ToString() + { + return this.value.ToString(); + } + } +} \ No newline at end of file -- cgit v1.2.3-70-g09d2