Object.Explicit Operator
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.
Overloads
Explicit(Object to Double[])
public static explicit operator double[]? (Java.Lang.Object? value);
static member op_Explicit : Java.Lang.Object -> double[]
Parameters
- value
- Object
Returns
Remarks
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.
Applies to
Explicit(Object to Int32)
public static explicit operator int (Java.Lang.Object value);
static member op_Explicit : Java.Lang.Object -> int
Parameters
- value
- Object
Returns
Remarks
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.
Applies to
Explicit(Object to Int32[])
public static explicit operator int[]? (Java.Lang.Object? value);
static member op_Explicit : Java.Lang.Object -> int[]
Parameters
- value
- Object
Returns
Remarks
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.
Applies to
Explicit(Object to Int64)
public static explicit operator long (Java.Lang.Object value);
static member op_Explicit : Java.Lang.Object -> int64
Parameters
- value
- Object
Returns
Remarks
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.
Applies to
Explicit(Object to String[])
public static explicit operator string[]? (Java.Lang.Object? value);
static member op_Explicit : Java.Lang.Object -> string[]
Parameters
- value
- Object
Returns
Remarks
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.
Applies to
Explicit(Object to Single)
public static explicit operator float (Java.Lang.Object value);
static member op_Explicit : Java.Lang.Object -> single
Parameters
- value
- Object
Returns
Remarks
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.
Applies to
Explicit(Object to Single[])
public static explicit operator float[]? (Java.Lang.Object? value);
static member op_Explicit : Java.Lang.Object -> single[]
Parameters
- value
- Object
Returns
Remarks
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.
Applies to
Explicit(Object to String)
public static explicit operator string? (Java.Lang.Object? value);
static member op_Explicit : Java.Lang.Object -> string
Parameters
- value
- Object
Returns
Remarks
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.
Applies to
Explicit(Object to Double)
public static explicit operator double (Java.Lang.Object value);
static member op_Explicit : Java.Lang.Object -> double
Parameters
- value
- Object
Returns
Remarks
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.
Applies to
Explicit(Object to UInt32)
Caution
Use (uint)(int) value
[System.Obsolete("Use `(uint)(int) value`", true)]
public static explicit operator uint (Java.Lang.Object value);
[<System.Obsolete("Use `(uint)(int) value`", true)>]
static member op_Explicit : Java.Lang.Object -> uint32
Parameters
- value
- Object
Returns
- Attributes
Remarks
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.
Applies to
Explicit(Object to UInt64)
Caution
Use (ulong)(long) value
[System.Obsolete("Use `(ulong)(long) value`", true)]
public static explicit operator ulong (Java.Lang.Object value);
[<System.Obsolete("Use `(ulong)(long) value`", true)>]
static member op_Explicit : Java.Lang.Object -> uint64
Parameters
- value
- Object
Returns
- Attributes
Remarks
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.
Applies to
Explicit(Object to SByte)
public static explicit operator sbyte (Java.Lang.Object value);
static member op_Explicit : Java.Lang.Object -> sbyte
Parameters
- value
- Object
Returns
Remarks
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.
Applies to
Explicit(Object to Char[])
public static explicit operator char[]? (Java.Lang.Object? value);
static member op_Explicit : Java.Lang.Object -> char[]
Parameters
- value
- Object
Returns
Remarks
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.
Applies to
Explicit(Object to Int64[])
public static explicit operator long[]? (Java.Lang.Object? value);
static member op_Explicit : Java.Lang.Object -> int64[]
Parameters
- value
- Object
Returns
Remarks
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.
Applies to
Explicit(Object to Byte[])
public static explicit operator byte[]? (Java.Lang.Object? value);
static member op_Explicit : Java.Lang.Object -> byte[]
Parameters
- value
- Object
Returns
Remarks
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.
Applies to
Explicit(Object to Byte)
Caution
Use (byte)(sbyte) value
[System.Obsolete("Use `(byte)(sbyte) value`", true)]
public static explicit operator byte (Java.Lang.Object value);
[<System.Obsolete("Use `(byte)(sbyte) value`", true)>]
static member op_Explicit : Java.Lang.Object -> byte
Parameters
- value
- Object
Returns
- Attributes
Remarks
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.
Applies to
Explicit(Object to Boolean[])
public static explicit operator bool[]? (Java.Lang.Object? value);
static member op_Explicit : Java.Lang.Object -> bool[]
Parameters
- value
- Object
Returns
Remarks
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.
Applies to
Explicit(Object to Boolean)
public static explicit operator bool (Java.Lang.Object value);
static member op_Explicit : Java.Lang.Object -> bool
Parameters
- value
- Object
Returns
Remarks
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.
Applies to
Explicit(Object to Object[])
public static explicit operator Java.Lang.Object[]? (Java.Lang.Object? value);
static member op_Explicit : Java.Lang.Object -> Java.Lang.Object[]
Parameters
- value
- Object
Returns
Remarks
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.
Applies to
Explicit(Object to Char)
public static explicit operator char (Java.Lang.Object value);
static member op_Explicit : Java.Lang.Object -> char
Parameters
- value
- Object
Returns
Remarks
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.