Boo.Lang.Compiler.Steps.ProcessMethodBodies.GetMostSimilarBaseMethodName C# (CSharp) 메소드

GetMostSimilarBaseMethodName() 개인적인 메소드

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