Data commit

This commit is contained in:
Ingy döt Net 2023-07-01 11:58:00 -04:00
parent 7387c8f97b
commit cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions

View file

@ -0,0 +1 @@
int[] numbers = new int[10];

View file

@ -0,0 +1 @@
string[] words = { "these", "are", "arrays" };

View file

@ -0,0 +1 @@
int[] more_numbers = new int[3]{ 21, 14 ,63 };

View file

@ -0,0 +1 @@
int[,] number_matrix = new int[3,2];

View file

@ -0,0 +1 @@
string[,] string_matrix = { {"I","swam"}, {"in","the"}, {"freezing","water"} };

View file

@ -0,0 +1 @@
string[,] funny_matrix = new string[2,2]{ {"clowns", "are"} , {"not", "funny"} };

View file

@ -0,0 +1,6 @@
int[] array = new int[10];
array[0] = 1;
array[1] = 3;
Console.WriteLine(array[0]);

View file

@ -0,0 +1,11 @@
using System;
using System.Collections.Generic;
List<int> list = new List<int>();
list.Add(1);
list.Add(3);
list[0] = 2;
Console.WriteLine(list[0]);