using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace JsonRx.Helper { public static class Extensions { static private List trueSet = new List { "true", "1", "yes", "y" }; public static Boolean ToBoolean(this string str) { try { return trueSet.Contains(str.ToLower()); } catch { return false; } } } }