指定したバージョン番号と、ライブラリファイルのコンパイルバージョン番号を比較します。
Namespace: LuminoAssembly: LuminoDotNet (in LuminoDotNet.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic static bool IsAtLeast(
int major,
int minor,
int revision
)
Public Shared Function IsAtLeast (
major As Integer,
minor As Integer,
revision As Integer
) As Boolean
public:
static bool IsAtLeast(
int major,
int minor,
int revision
)
static member IsAtLeast :
major : int *
minor : int *
revision : int -> bool
Parameters
- major
- Type: SystemInt32
メジャーバージョン - minor
- Type: SystemInt32
マイナーバージョン - revision
- Type: SystemInt32
リビジョンバージョン
Return Value
Type:
Boolean[Missing <returns> documentation for "M:Lumino.Version.IsAtLeast(System.Int32,System.Int32,System.Int32)"]
Remarks
指定バージョン >= コンパイルバージョン である場合、true となります。
See Also