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