Create a string array −
string[] str = new string[] {
"Videos",
"Tutorials",
"Tools",
"InterviewQA"
};Loop until the length of the array −
for (int i = 0; i < str.Length; i++) {
string res = str[i];
Console.WriteLine(res);
}Here is the complete code −
Example
using System;
public class Demo {
public static void Main() {
string[] str = new string[] {
"Videos",
"Tutorials",
"Tools",
"InterviewQA"
};
Console.WriteLine("String Array...");
for (int i = 0; i < str.Length; i++) {
string res = str[i];
Console.WriteLine(res);
}
}
}Output
String Array... Videos Tutorials Tools InterviewQA