Object.Implicit 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
| Name | Description |
|---|---|
| Implicit(Int32 to Object) |
Converts the specified managed |
| Implicit(Int32[] to Object) |
Converts the specified managed |
| Implicit(Int64 to Object) |
Converts the specified managed |
| Implicit(Int64[] to Object) |
Converts the specified managed |
| Implicit(SByte to Object) |
Converts the specified managed |
| Implicit(Single[] to Object) |
Converts the specified managed |
| Implicit(Double to Object) |
Converts the specified managed |
| Implicit(String to Object) |
Converts the specified managed |
| Implicit(String[] to Object) |
Converts the specified managed |
| Implicit(UInt32 to Object) |
Obsolete.
Converts the specified managed |
| Implicit(UInt64 to Object) |
Obsolete.
Converts the specified managed |
| Implicit(Single to Object) |
Converts the specified managed |
| Implicit(Char[] to Object) |
Converts the specified managed |
| Implicit(Double[] to Object) |
Converts the specified managed |
| Implicit(Byte[] to Object) |
Converts the specified managed |
| Implicit(Byte to Object) |
Obsolete.
Converts the specified managed |
| Implicit(Boolean[] to Object) |
Converts the specified managed |
| Implicit(Boolean to Object) |
Converts the specified managed |
| Implicit(Object[] to Object) |
Converts the specified managed |
| Implicit(Char to Object) |
Converts the specified managed |
Implicit(Int32 to Object)
Converts the specified managed Int32 value to Object.
public static implicit operator Java.Lang.Object(int value);
static member op_Implicit : int -> Java.Lang.Object
Parameters
- value
- Int32
The value to convert.
Returns
The converted value.
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)
Converts the specified managed Int32 array value to Object.
public static implicit operator Java.Lang.Object?(int[]? value);
static member op_Implicit : int[] -> Java.Lang.Object
Parameters
- value
- Int32[]
The value to convert.
Returns
The converted value.
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)
Converts the specified managed Int64 value to Object.
public static implicit operator Java.Lang.Object(long value);
static member op_Implicit : int64 -> Java.Lang.Object
Parameters
- value
- Int64
The value to convert.
Returns
The converted value.
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)
Converts the specified managed Int64 array value to Object.
public static implicit operator Java.Lang.Object?(long[]? value);
static member op_Implicit : int64[] -> Java.Lang.Object
Parameters
- value
- Int64[]
The value to convert.
Returns
The converted value.
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)
Converts the specified managed SByte value to Object.
public static implicit operator Java.Lang.Object(sbyte value);
static member op_Implicit : sbyte -> Java.Lang.Object
Parameters
- value
- SByte
The value to convert.
Returns
The converted value.
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)
Converts the specified managed Single array value to Object.
public static implicit operator Java.Lang.Object?(float[]? value);
static member op_Implicit : single[] -> Java.Lang.Object
Parameters
- value
- Single[]
The value to convert.
Returns
The converted value.
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)
Converts the specified managed Double value to Object.
public static implicit operator Java.Lang.Object(double value);
static member op_Implicit : double -> Java.Lang.Object
Parameters
- value
- Double
The value to convert.
Returns
The converted value.
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)
Converts the specified managed String value to Object.
public static implicit operator Java.Lang.Object?(string? value);
static member op_Implicit : string -> Java.Lang.Object
Parameters
- value
- String
The value to convert.
Returns
The converted value.
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)
Converts the specified managed String array value to Object.
public static implicit operator Java.Lang.Object?(string[]? value);
static member op_Implicit : string[] -> Java.Lang.Object
Parameters
- value
- String[]
The value to convert.
Returns
The converted value.
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
Converts the specified managed UInt32 value to Object.
[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
The value to convert.
Returns
The converted value.
- 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
Converts the specified managed UInt64 value to Object.
[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
The value to convert.
Returns
The converted value.
- 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)
Converts the specified managed Single value to Object.
public static implicit operator Java.Lang.Object(float value);
static member op_Implicit : single -> Java.Lang.Object
Parameters
- value
- Single
The value to convert.
Returns
The converted value.
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)
Converts the specified managed Char array value to Object.
public static implicit operator Java.Lang.Object?(char[]? value);
static member op_Implicit : char[] -> Java.Lang.Object
Parameters
- value
- Char[]
The value to convert.
Returns
The converted value.
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)
Converts the specified managed Double array value to Object.
public static implicit operator Java.Lang.Object?(double[]? value);
static member op_Implicit : double[] -> Java.Lang.Object
Parameters
- value
- Double[]
The value to convert.
Returns
The converted value.
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)
Converts the specified managed Byte array value to Object.
public static implicit operator Java.Lang.Object?(byte[]? value);
static member op_Implicit : byte[] -> Java.Lang.Object
Parameters
- value
- Byte[]
The value to convert.
Returns
The converted value.
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
Converts the specified managed Byte value to Object.
[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
The value to convert.
Returns
The converted value.
- 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)
Converts the specified managed Boolean array value to Object.
public static implicit operator Java.Lang.Object?(bool[]? value);
static member op_Implicit : bool[] -> Java.Lang.Object
Parameters
- value
- Boolean[]
The value to convert.
Returns
The converted value.
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)
Converts the specified managed Boolean value to Object.
public static implicit operator Java.Lang.Object(bool value);
static member op_Implicit : bool -> Java.Lang.Object
Parameters
- value
- Boolean
The value to convert.
Returns
The converted value.
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)
Converts the specified managed Object array value 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[]
The value to convert.
Returns
The converted value.
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)
Converts the specified managed Char value to Object.
public static implicit operator Java.Lang.Object(char value);
static member op_Implicit : char -> Java.Lang.Object
Parameters
- value
- Char
The value to convert.
Returns
The converted value.
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.