Regextra.Template.GetMatchPropertyValue C# (CSharp) Méthode

GetMatchPropertyValue() private static méthode

private static GetMatchPropertyValue ( object item, Match m, IFormatProvider provider ) : string
item object
m System.Text.RegularExpressions.Match
provider IFormatProvider
Résultat string
        private static string GetMatchPropertyValue(object item, Match m, IFormatProvider provider)
        {
            bool hasNestedProperties = m.Groups[PROPERTY].Value.Contains(".");
            return hasNestedProperties ? GetNestedPropertyValue(item, m, provider) : GetSinglePropertyValue(item, m, provider);
        }