Answers for "work with arrays in c#"

C#
6

make new array in c#

string[] stringArray = new string[6];
Posted by: Guest on July-16-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