Advertisement
Guest User

Untitled

a guest
Dec 5th, 2016
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. /*
  8. *Author: Matthew Zelenka
  9. *Program: ZelenkaMProjects6-2.cs
  10. *Purpose: Create a class representing a student.
  11. Include characteristics such as student number, first and last name, classification, and major.
  12. */
  13.  
  14. namespace ZelenkaMProjects6_2
  15. {
  16. /// <summary>
  17. /// Instantiates the test program.
  18. /// Is the head of operations, allows execution of program.
  19. /// </summary>
  20. class Program
  21. {
  22. static void Main(string[] args)
  23. {
  24. Test.DisplayName();
  25.  
  26. Console.Write("\n\n\nPlease press any key to exit the program.");
  27. Console.ReadKey();
  28. }
  29. }
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement