Sounds like a Resource Dictionary would be useful to you. You create string entries, give them a name and VS will generate properties with the same name to access the values through.

The other option would be Shared properties:
vbnet Code:
  1. Public Class DefaultMasks
  2.     Public Shared ReadOnly Property PhoneNumber As String
  3.         Get
  4.             Return "(999)000-0000"
  5.         End Get
  6.     End Property
  7.     Public Shared ReadOnly Property ZipCode As String
  8.         Get
  9.             Return "00000-9999"
  10.         End Get
  11.     End Property
  12. End Class