logo

Crowdly

Browser

Add to Chrome

Що буде виведено на консоль? class Person {  public string Name { get; se...

✅ 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); } }

0%
0%
0%
More questions like this

Want instant access to all verified answers on do.nmu.org.ua?

Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!

Browser

Add to Chrome