Sakuno.KanColle.Amatsukaze.SQLiteDataReaderExtensions.GetBoolean C# (CSharp) Method

GetBoolean() public static method

public static GetBoolean ( this rpReader, string rpColumn ) : bool
rpReader this
rpColumn string
return bool
        public static bool GetBoolean(this SQLiteDataReader rpReader, string rpColumn)
        {
            var rResult = rpReader[rpColumn];

            if (rResult == DBNull.Value)
                return false;

            return Convert.ToBoolean(rResult);
        }
        public static int GetInt32(this SQLiteDataReader rpReader, string rpColumn)