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;
public int Age;
public Student(string name, int age)
{
Name = name;
Age = age;
}
public void DisplayInfo()
{
Console.WriteLine("Student Name: " + Name);
Console.WriteLine("Age: " + Age);
}
}
class Program
{
static void Main()
{
Student student1 = new Student("Genver", 20);
student1.DisplayInfo();
Console.ReadLine();
}
}
Enter to Rename, Shift+Enter to Preview
OUTPUT
Ejecutar