Answers for "array functions in C#"

C#
7

c# array

float[] array = new float[] { 1f, 5f, 4f, 3f };
Posted by: Guest on June-08-2020
1

c# define array

float[] floats = new float[]{1.0,1.1,1.4,1.23,2212.233};
Posted by: Guest on June-04-2021
0

array declaration in c#

// Syntax: data_type[] variable_name = new data_type[size];

// Decalring array of integers of length 5
int[] intArr = new int[5];

// Declaring array of strings of length 5
string[] names = new string[5];

// We can also populate the array, if we know the elements in advance
int[] evenDigits = new int[] {0,2,4,6,8}; // notice that in this, we don't need explicit size declaration.
Posted by: Guest on November-07-2021

C# Answers by Framework

Browse Popular Code Answers by Language