I have a problem while I was study by myself today I did follow everything in the lecture structure carefully but I end up having CS1073 problem...
using System;
using System.Collections.Generic;
using System.Text;
namespace Shape_Rectangle
{
class AExample
{
public void animal()
{
Console.WriteLine("C A");
}
public void animal(string p1)
{
Console.WriteLine("C B" + p1);
}
public void animal(string p1, string p2) : this(p1)
{
Console.WriteLine("C C" + p2);
}
}
}
and it keep saying that the ":" in this -> public void animal(string p1, string p2) : this(p1)
is having a problem anyone have any idea what did I do wrong here?
You are right in thinking that the colon is used to chain constructors. However your constructors are not well formed and are therefore acting like methods instead.
Here is an excerpt from the microsoft documentation:
As your class is called "AExample", your constructors should also be called "AExample" and not "animal". Your constructors should also not include the return type, which in this case is "void".
To fix your code, try this: