Как .NET framework обрабатывает методы неоднозначности при множественном наследовании. Как и в этом случае ASP.NET MVC мы можем обрабатывать неоднозначность действий с помощью [actionname] dataannotation.
In C#, two classes (either abstract or concrete) cannot be inherited by the same derived class. It causes ambiguity in the derived class if both have the same method signature. But in asp.net mvc we can use two action with same name by decorating with the data annotation attribute [ActionName]. I want to know how both these things are different. how .NET framework identifies these situation, want to know the real oops concept used behind this.
Что я уже пробовал:
Я много пробовал в интернете, чтобы найти ответ, но не преуспел в том, чтобы найти настоящий ответ.
F-ES Sitecore
Этот вопрос не имеет особого смысла, вы пытаетесь сравнить наследование OO с привязкой URL-путей к методам. Это совершенно разные вещи.