Answers for "how to store array in c#"

C#
1

how to store array in c#

int[] arr = new int[5]
arr[0] = 1;
arr[1] = 2;
arr[2] = 3;
arr[3] = 4;
arr[4] = 5;
Posted by: Guest on September-25-2020

Code answers related to "how to store array in c#"

C# Answers by Framework

Browse Popular Code Answers by Language