public bool IsAllowedCharacter(char c) { return(VersionTypeTraitsUtils.IsCharDigit(c) || c == '.' || c == '-' || VersionTypeTraitsUtils.IsCharLetter(c)); }
public bool IsAllowedLastCharacter(char c, bool strict = false) { return(VersionTypeTraitsUtils.IsCharDigit(c) || VersionTypeTraitsUtils.IsCharLetter(c)); }