Antlr4.StringTemplate.Extensions.PropertyInfoExtensions.GetGetMethod C# (CSharp) Method

GetGetMethod() public static method

public static GetGetMethod ( this propertyInfo ) : MethodInfo
propertyInfo this
return System.Reflection.MethodInfo
        public static MethodInfo GetGetMethod(this PropertyInfo propertyInfo)
        {
            return propertyInfo.GetMethod;
        }
PropertyInfoExtensions