Guest User

Untitled

a guest
Sep 25th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. class SingleDimensionArray
  2. {
  3. static void Main(string[] args)
  4. {
  5. string[] students = new string[3] {"James" , "Alex", "John"};
  6. for (int i = 0; i < students.Length; i++)
  7. {
  8. Console.WriteLine(students[i]);
  9. }
  10. }
  11. }
Add Comment
Please, Sign In to add comment