Mono.CSharp.MethodSpec.GetGenericMethodDefinition C# (CSharp) Method

GetGenericMethodDefinition() public method

public GetGenericMethodDefinition ( ) : MethodSpec
return MethodSpec
        public MethodSpec GetGenericMethodDefinition()
        {
            if (!IsGeneric && !DeclaringType.IsGeneric)
                return this;

            return MemberCache.GetMember (declaringType, this);
        }