"c# relaxed boolean cast" Code Answer's

You're definitely familiar with the best coding language C# that developers use to develop their projects and they get all their queries like "c# relaxed boolean cast" answered properly. Developers are finding an appropriate answer about c# relaxed boolean cast related to the C# coding language. By visiting this online portal developers get answers concerning C# codes question like c# relaxed boolean cast. Enter your desired code related query in the search bar and get every piece of information about C# code related question on c# relaxed boolean cast. 

c# relaxed boolean cast

By DeuxAlphaDeuxAlpha on Mar 10, 2020
/// <summary>
/// Parse strings into true or false bools using relaxed parsing rules
/// </summary>
public static class BoolParser
{
  /// <summary>
  /// Get the boolean value for this string
  /// </summary>
  public static bool GetValue(string value, bool defaultValue)
  {
    var result = IsTrue(value, defaultValue);
    if (result == null) return defaultValue;
    return (bool) result;
  }

  public static bool? GetValue(string value)
  {
    return IsTrue(value);
  }

  /// <summary>
  /// Determine whether the string is equal to True
  /// </summary>
  private static bool? IsTrue(string value, bool? defaultValue = null)
  {
    try
    {
      if (value == null)
      {
        return defaultValue;
      }

      value = value.Trim().ToLower();

      switch (value)
      {
        case "true":
        case "t":
        case "1":
        case "yes":
        case "yeah":
        case "yup":
        case "y":
          return true;
        case "false":
        case "f":
        case "0":
        case "no":
        case "nope":
        case "n":
          return false;
        default:
          return defaultValue;
      }
    }
    catch
    {
      return defaultValue;
    }
  }
}

Source: www.dotnetperls.com

Add Comment

0

All those coders who are working on the C# based application and are stuck on c# relaxed boolean cast can get a collection of related answers to their query. Programmers need to enter their query on c# relaxed boolean cast related to C# code and they'll get their ambiguities clear immediately. On our webpage, there are tutorials about c# relaxed boolean cast for the programmers working on C# code while coding their module. Coders are also allowed to rectify already present answers of c# relaxed boolean cast while working on the C# language code. Developers can add up suggestions if they deem fit any other answer relating to "c# relaxed boolean cast". Visit this developer's friendly online web community, CodeProZone, and get your queries like c# relaxed boolean cast resolved professionally and stay updated to the latest C# updates. 

C# answers related to "c# relaxed boolean cast"

View All C# queries

C# queries related to "c# relaxed boolean cast"

Browse Other Code Languages

CodeProZone