public string ToString(string space = "    ")
 {
     if (this.HasError)
     {
         return(ErrorType.ToString());
     }
     else
     {
         if (space.Trim() == "")
         {
             space = " ® ";
         }
     } return("Number:" + number + space + "Country:" + DumbedNumber.RealCountry(this.CountryAbb) + space + GetTrueCallerStored() + space + GetImageStatue() + space + "Time:" + this.CreationTime);
 }
 public string RealCountry()
 {
     return(DumbedNumber.RealCountry(this.CountryAbb));
 }