C# Class SharpTox.Core.ToxVersion

Represents a version of Tox.
Mostrar archivo Open project: hexafluoride/Detox

Public Methods

Method Description
IsCompatible ( ) : bool

Checks whether or not this version is compatible with the version of Tox that we're using.

ToString ( ) : string
ToxVersion ( int major, int minor, int patch ) : System

Initializes a new instance of the ToxVerion class.

Method Details

IsCompatible() public method

Checks whether or not this version is compatible with the version of Tox that we're using.
public IsCompatible ( ) : bool
return bool

ToString() public method

public ToString ( ) : string
return string

ToxVersion() public method

Initializes a new instance of the ToxVerion class.
public ToxVersion ( int major, int minor, int patch ) : System
major int The major version number.
minor int The minor version number.
patch int The patch or revision number.
return System