using System;
struct Student {
public int id;
public string name;
public Student(int _id, string _name) {
id = _id;
name = _name;
}
public void Show() {
Console.WriteLine($"id: {this.id} Name: {this.name}");
}
}
class Program
{
static void Main(string[] args)
{
Student s = new Student(34678, "Emma");
s.Show();
}
}
/*
run:
id: 34678 Name: Emma
*/