Antlr4.StringTemplate.Extensions.TypeExtensions.GetProperty C# (CSharp) Méthode

GetProperty() public static méthode

public static GetProperty ( this type, string name ) : PropertyInfo
type this
name string
Résultat System.Reflection.PropertyInfo
        public static PropertyInfo GetProperty(this Type type, string name)
        {
            return type.GetRuntimeProperty(name);
        }