graal-gmap-generator/GraalGmapGenerator/Helpers.cs
2020-09-08 16:44:10 +02:00

17 lines
No EOL
446 B
C#

using System;
namespace GraalGmapGenerator
{
public static class Helpers
{
public static bool YesNoToBool(string input)
{
var inputLowered = input.ToLower();
if (input == "y" || input == "yes")
return true;
if (input == "n" || input == "no")
return false;
throw new ArgumentException("Invalid input given.", nameof(input));
}
}
}