vault backup: 2023-11-16 09:19:00
This commit is contained in:
10
Prog/Array.md
Normal file
10
Prog/Array.md
Normal file
@ -0,0 +1,10 @@
|
||||
An array is a vector in a collection
|
||||
|
||||
To declare an array we use :
|
||||
```csharp
|
||||
public static void Main() {
|
||||
int[] vect = new int[4] // Declare a vector of 4 elements
|
||||
vect[4] = 22;
|
||||
}
|
||||
|
||||
```
|
Reference in New Issue
Block a user