graal-gmap-generator/GraalGmapGenerator/Helpers.cs

17 lines
No EOL
449 B
C#

using System;
namespace GraalGmapGenerator
{
public static class Helpers
{
public static bool YesNoToBool(string input)
{
string 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));
}
}
}