CS
cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
using System;
class Student
{
public string Name { get; set; }
public int Age { get; set; }
public string Year { get; set; }
public Student(string name, int age, string year)
{
Name = name;
Age = age;
Year = year;
}
public void DisplayInfo()
{
Console.WriteLine("Student Name: " + Name);
Console.WriteLine("Age: " + Age);
Console.WriteLine("Year: " + Year);
}
}
class Program
{
static void Main()
{
Student student1 = new Student("Denver", 24, "Second Year");
Enter to Rename, Shift+Enter to Preview
OUTPUT
Ejecutar