Octopus.Client.Model.Versioning.StrictSemanticVersion.IsValidPart C# (CSharp) Метод

IsValidPart() статический приватный Метод

static private IsValidPart ( string s, bool allowLeadingZeros ) : bool
s string
allowLeadingZeros bool
Результат bool
        internal static bool IsValidPart(string s, bool allowLeadingZeros)
        {
            return IsValidPart(s.ToCharArray(), allowLeadingZeros);
        }

Same methods

StrictSemanticVersion::IsValidPart ( char chars, bool allowLeadingZeros ) : bool