Click or drag to resize
SQLiteVersion Structure
The SQLite numeric version number.

Namespace: SQLitePCL.pretty
Assembly: SQLitePCL.pretty (in SQLitePCL.pretty.dll) Version: 1.0.0.0 (1.0.0)
Syntax
public struct SQLiteVersion : IEquatable<SQLiteVersion>, 
	IComparable<SQLiteVersion>, IComparable

The SQLiteVersion type exposes the following members.

Methods
  NameDescription
Public methodCompareTo(Object)
Compares the current instance with another object of the same type and returns an integer that indicates whether the current instance precedes, follows, or occurs in the same position in the sort order as the other object.
Public methodCompareTo(SQLiteVersion)
Compares the current object with another object of the same type.
Public methodEquals(Object)
Indicates whether this instance and a specified object are equal.
(Overrides ValueTypeEquals(Object).)
Public methodEquals(SQLiteVersion)
Indicates whether the current object is equal to another object of the same type.
Public methodGetHashCode
Returns the hash code for this instance.
(Overrides ValueTypeGetHashCode.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodToInt
Converts the version number as an integer with the value (Major*1000000 + Minor*1000 + Release).
Public methodToString
Returns the fully qualified type name of this instance.
(Overrides ValueTypeToString.)
Top
Operators
  NameDescription
Public operatorStatic memberEquality
Indicates whether the two SQLiteVersion instances are equal to each other.
Public operatorStatic memberGreaterThan
Indicates if the the first SQLiteVersion is greater than the second.
Public operatorStatic memberGreaterThanOrEqual
Indicates if the the first SQLiteVersion is greater than or equal to the second.
Public operatorStatic memberInequality
Indicates whether the two SQLiteVersion instances are not equal each other.
Public operatorStatic memberLessThan
Indicates if the the first SQLiteVersion is less than the second.
Public operatorStatic memberLessThanOrEqual
Indicates if the the first SQLiteVersion is less than or equal to the second.
Top
Properties
  NameDescription
Public propertyMajor
Gets the major version number.
Public propertyMinor
Gets the minor version number.
Public propertyRelease
Gets the release version number.
Top
See Also