# Chapter4: Common Type

## This section contain the following items:

* 1.Array List and Operation
* 2.Array

## 1.Array List and Operation

* 1.Create an ArrayList and add/delete items
  * add/delete items

    ```
      $countries = New-Object System.Collections.ArrayList
      $countries.Add('India')
      $countries.Add('Taiwan')
    ```
  * delete items

    ```
      $countries.Remove('Taiwan')
    ```
  * delete all items $countries.Clear()
* 2.Traversal

  ```
    for($i=0; $i -lt $countries.Count; $i++)
    {
        $countries[$i]
    }
  ```

## 2.Array

* 1.Create a empty array

  ```
    $myArray = @()
  ```
* 2.Add Elements to array

  ```
    $myArray += 1
  ```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://jen-hsuan-hsieh.gitbook.io/powershell-programming-and-relative-experience/chapter4_common_type_and_operation.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
