DynamicJsonArray.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
Implicit(DynamicJsonArray to Array) |
Converts a DynamicJsonArray instance to an array of objects. |
Implicit(DynamicJsonArray to Object[]) |
Converts a DynamicJsonArray instance to an array of objects. |
Implicit(DynamicJsonArray to Array)
Converts a DynamicJsonArray instance to an array of objects.
public static implicit operator Array(System.Web.Helpers.DynamicJsonArray obj);
static member op_Implicit : System.Web.Helpers.DynamicJsonArray -> Array
Public Shared Widening Operator CType (obj As DynamicJsonArray) As Array
Parameters
- obj
- DynamicJsonArray
The JSON array to convert.
Returns
The array of objects that represents the JSON array.
Applies to
Implicit(DynamicJsonArray to Object[])
Converts a DynamicJsonArray instance to an array of objects.
public static implicit operator object[](System.Web.Helpers.DynamicJsonArray obj);
static member op_Implicit : System.Web.Helpers.DynamicJsonArray -> obj[]
Public Shared Widening Operator CType (obj As DynamicJsonArray) As Object()
Parameters
- obj
- DynamicJsonArray
The JSON array to convert.
Returns
The array of objects that represents the JSON array.