Skip to content

Instantly share code, notes, and snippets.

@dontpaniclabsgists
Created March 18, 2025 17:10
Show Gist options
  • Save dontpaniclabsgists/c0078107e8d7099dd46f7ccba2211d11 to your computer and use it in GitHub Desktop.
Save dontpaniclabsgists/c0078107e8d7099dd46f7ccba2211d11 to your computer and use it in GitHub Desktop.
public class PhoneNumber
{
[XmlIgnore]
public string AreaCode { get; set; }
[XmlIgnore]
public string Number { get; set; }
[XmlText]
public string FormattedNumber
{
get { return $"{AreaCode}-{Number}"; }
set {}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment