Caliburn-Micro / Caliburn.Micro

A small, yet powerful framework, designed for building applications across all XAML platforms. Its strong support for MV* patterns will enable you to build your solution quickly, without the need to sacrifice code quality or testability.
http://caliburnmicro.com/
MIT License
2.79k stars 775 forks source link

This change was made to enhance code cleanliness and efficiency in tutorial app #899

Open ravibaghel opened 3 months ago

ravibaghel commented 3 months ago

List of Changes:

  1. The code line initializing a variable "c" with the instance of "SimpleContainer" has been altered. The updated code no longer assigns the instance to the variable "c", but simply gets the instance of "SimpleContainer" without storing it in any variable. This change suggests that the variable "c" was not being used elsewhere in the code, hence it was removed to improve code cleanliness and efficiency.