✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Що буде виведено на консоль?
class Person
{ public string Name { get; set; }
public Person(string name) { this.Name = name; } }
class Program
{ static void Main(string[] args)
{ const string personName = "Anatoliy";
Person firstPerson = new Person(personName);
Person secondPerson = new Person(personName);
Console.WriteLine(firstPerson == secondPerson); } }