Answers for "c# function array"

C#
7

c# array

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

array in C#

// String array for my friends ( Example )
string[] myFriends = {"Friend1", "Friend2", "Friend3", "Friend4"};

// Display MyFriend2 at index of ( 1 )
Console.WriteLine(myFriends[1]);
Posted by: Guest on June-05-2021

C# Answers by Framework

Browse Popular Code Answers by Language