Boo.Lang.Compiler.Steps.ProcessMethodBodies.GetMostSimilarBaseMethodName C# (CSharp) Method

GetMostSimilarBaseMethodName() private method

private GetMostSimilarBaseMethodName ( Boo.Lang.Compiler.TypeSystem.InternalMethod entity ) : string
entity Boo.Lang.Compiler.TypeSystem.InternalMethod
return string
        private string GetMostSimilarBaseMethodName(InternalMethod entity)
        {
            return NameResolutionService.GetMostSimilarMemberName(entity.DeclaringType.BaseType, entity.Name, EntityType.Method);
        }
ProcessMethodBodies