Menu-Driven Application - Student Details
Menu-Driven Application - Student Details
using System.Collections.Generic;
namespace MenuDrivenApp
{
class Student
{
public string Name { get; set; }
public int Age { get; set; }
public string Grade { get; set; }
class Program
{
static List<Student> students = new List<Student>();