SenseNet.ContentRepository.Storage.Schema.TypeConverter.ToLong C# (CSharp) Method

ToLong() static private method

static private ToLong ( object value ) : long
value object
return long
        internal static long ToLong(object value)
        {
            return ((value == null || value == System.DBNull.Value) ? 0 : Convert.ToInt64(value, CultureInfo.InvariantCulture));
        }
    }