dev/CSHARP/Program.cs
2026-04-27 23:38:42 +05:00

19 lines
370 B
C#

Person tom = new Person();
string personName = tom.name;
int personAge = tom.age;
Console.WriteLine($"name: {personName} age: {personAge}");
tom.name = "Tom";
tom.age = 37;
tom.Print();
class Person
{
public string name = "Undefined";
public int age;
public void Print()
{
Console.WriteLine($"Имя: {name} Возраст: {age}");
}
}