Object.Implicit Operator

Definition

Overloads

Implicit(Int32 to Object)
Implicit(Int32[] to Object)
Implicit(Int64 to Object)
Implicit(Int64[] to Object)
Implicit(SByte to Object)
Implicit(Single[] to Object)
Implicit(Double to Object)
Implicit(String to Object)
Implicit(String[] to Object)
Implicit(UInt32 to Object)
Obsolete.
Implicit(UInt64 to Object)
Obsolete.
Implicit(Single to Object)
Implicit(Char[] to Object)
Implicit(Double[] to Object)
Implicit(Byte[] to Object)
Implicit(Byte to Object)
Obsolete.
Implicit(Boolean[] to Object)
Implicit(Boolean to Object)
Implicit(Object[] to Object)
Implicit(Char to Object)

Implicit(Int32 to Object)

public static implicit operator Java.Lang.Object (int value);
static member op_Implicit : int -> Java.Lang.Object

Parameters

value
Int32

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

Implicit(Int32[] to Object)

public static implicit operator Java.Lang.Object? (int[]? value);
static member op_Implicit : int[] -> Java.Lang.Object

Parameters

value
Int32[]

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

Implicit(Int64 to Object)

public static implicit operator Java.Lang.Object (long value);
static member op_Implicit : int64 -> Java.Lang.Object

Parameters

value
Int64

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

Implicit(Int64[] to Object)

public static implicit operator Java.Lang.Object? (long[]? value);
static member op_Implicit : int64[] -> Java.Lang.Object

Parameters

value
Int64[]

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

Implicit(SByte to Object)

public static implicit operator Java.Lang.Object (sbyte value);
static member op_Implicit : sbyte -> Java.Lang.Object

Parameters

value
SByte

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

Implicit(Single[] to Object)

public static implicit operator Java.Lang.Object? (float[]? value);
static member op_Implicit : single[] -> Java.Lang.Object

Parameters

value
Single[]

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

Implicit(Double to Object)

public static implicit operator Java.Lang.Object (double value);
static member op_Implicit : double -> Java.Lang.Object

Parameters

value
Double

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

Implicit(String to Object)

public static implicit operator Java.Lang.Object? (string? value);
static member op_Implicit : string -> Java.Lang.Object

Parameters

value
String

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

Implicit(String[] to Object)

public static implicit operator Java.Lang.Object? (string[]? value);
static member op_Implicit : string[] -> Java.Lang.Object

Parameters

value
String[]

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

Implicit(UInt32 to Object)

Caution

Use (Java.Lang.Integer)(int) value

[System.Obsolete("Use `(Java.Lang.Integer)(int) value`", true)]
public static implicit operator Java.Lang.Object (uint value);
[<System.Obsolete("Use `(Java.Lang.Integer)(int) value`", true)>]
static member op_Implicit : uint32 -> Java.Lang.Object

Parameters

value
UInt32

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

Implicit(UInt64 to Object)

Caution

Use (Java.Lang.Long)(long) value

[System.Obsolete("Use `(Java.Lang.Long)(long) value`", true)]
public static implicit operator Java.Lang.Object (ulong value);
[<System.Obsolete("Use `(Java.Lang.Long)(long) value`", true)>]
static member op_Implicit : uint64 -> Java.Lang.Object

Parameters

value
UInt64

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

Implicit(Single to Object)

public static implicit operator Java.Lang.Object (float value);
static member op_Implicit : single -> Java.Lang.Object

Parameters

value
Single

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

Implicit(Char[] to Object)

public static implicit operator Java.Lang.Object? (char[]? value);
static member op_Implicit : char[] -> Java.Lang.Object

Parameters

value
Char[]

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

Implicit(Double[] to Object)

public static implicit operator Java.Lang.Object? (double[]? value);
static member op_Implicit : double[] -> Java.Lang.Object

Parameters

value
Double[]

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

Implicit(Byte[] to Object)

public static implicit operator Java.Lang.Object? (byte[]? value);
static member op_Implicit : byte[] -> Java.Lang.Object

Parameters

value
Byte[]

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

Implicit(Byte to Object)

Caution

Use (Java.Lang.Byte)(sbyte) value

[System.Obsolete("Use `(Java.Lang.Byte)(sbyte) value`", true)]
public static implicit operator Java.Lang.Object (byte value);
[<System.Obsolete("Use `(Java.Lang.Byte)(sbyte) value`", true)>]
static member op_Implicit : byte -> Java.Lang.Object

Parameters

value
Byte

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

Implicit(Boolean[] to Object)

public static implicit operator Java.Lang.Object? (bool[]? value);
static member op_Implicit : bool[] -> Java.Lang.Object

Parameters

value
Boolean[]

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

Implicit(Boolean to Object)

public static implicit operator Java.Lang.Object (bool value);
static member op_Implicit : bool -> Java.Lang.Object

Parameters

value
Boolean

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

Implicit(Object[] to Object)

public static implicit operator Java.Lang.Object? (Java.Lang.Object[]? value);
static member op_Implicit : 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

Implicit(Char to Object)

public static implicit operator Java.Lang.Object (char value);
static member op_Implicit : char -> Java.Lang.Object

Parameters

value
Char

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