Beispiel #1
0
 /// <summary>
 /// Returns true if name is "font-safe" meaning that it only contains characters: a-z, A-Z, 0-9, _
 /// </summary>
 public bool IsDisplayNameFontSafe()
 {
     return(ParseHelper.CheckNameRegex(tags.displayName));
 }