Quiz Question 1 of 2
Color a = new Color("Red");
Color b = a;
What will the result of this equality expression be?
a == b
class Color
{
public string Name { get; }
public Color(string name)
{
Name = name;
}
}
Choose the correct answer below: