namespace MediaBrowser.Model.Extensions
{
    public static class BoolHelper
    {
        /// 
        /// Tries the parse culture invariant.
        /// 
        /// The s.
        /// The result.
        /// true if XXXX, false otherwise.
        public static bool TryParseCultureInvariant(string s, out bool result)
        {
            return bool.TryParse(s, out result);
        }
    }
}