OperatingSystem.IsAndroidVersionAtLeast(Int32, Int32, Int32, Int32) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Checks if the Android version (returned by the Linux command uname
) is greater than or equal to the specified version. This method can be used to guard APIs that were added in the specified version.
public static bool IsAndroidVersionAtLeast (int major, int minor = 0, int build = 0, int revision = 0);
static member IsAndroidVersionAtLeast : int * int * int * int -> bool
Public Shared Function IsAndroidVersionAtLeast (major As Integer, Optional minor As Integer = 0, Optional build As Integer = 0, Optional revision As Integer = 0) As Boolean
Parameters
- major
- Int32
The major release number.
- minor
- Int32
The minor release number.
- build
- Int32
The build release number.
- revision
- Int32
The revision release number.
Returns
true
if the current application is running on an Android version that is at least what was specified in the parameters; false
otherwise.
Applies to
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET