ASP.NET Core MVC Controls | ComponentOne
C1.JsonNet Namespace / JsonWriter Class / StartArrayScope Method
The specified array.






In This Topic
    StartArrayScope Method
    In This Topic
    Start the scope for an array.
    Syntax
    'Declaration
     
    
    Public Sub StartArrayScope( _
       ByVal arr As System.Object _
    ) 
    'Usage
     
    
    Dim instance As JsonWriter
    Dim arr As System.Object
     
    instance.StartArrayScope(arr)
    public void StartArrayScope( 
       System.object arr
    )
    public procedure StartArrayScope( 
        arr: System.TObject
    ); 
    public function StartArrayScope( 
       arr : System.Object
    );
    public: void StartArrayScope( 
       System.Object* arr
    ) 
    public:
    void StartArrayScope( 
       System.Object^ arr
    ) 

    Parameters

    arr
    The specified array.
    See Also