What is difference between MVC, MVP & MVVM design pattern in terms of coding c#

后端 未结 5 1141
眼角桃花
眼角桃花 2020-11-30 15:52

If we search Google using the phrase \"What is difference between MVC, MVP & MVVM design pattern\" then we may get few URL\'s which discuss the difference between MVC MV

5条回答
  •  孤独总比滥情好
    2020-11-30 16:30

    MVC, MVP, MVVM

    MVC (old one)

    MVP (more modular because of its low-coupling. Presenter is a mediator between the View and Model)

    MVVM (You already have two-way binding between VM and UI component, so it is more automated than MVP)

    Another image:

提交回复
热议问题