public class Telphone
{
private int telephoneNumber;
public Telphone( int tel)
{
this.telephoneNumber = tel;
}
public override string ToString()
{
// return string.Format($"{telephoneNumber,-15:###-####-####}");
更好
}