Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/basics/data/data-binding/compiled-bindings.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ description: CONCEPTS
Bindings defined in the XAML are using reflection in order to find and access the requested property in your `ViewModel`. In Avalonia you can also use compiled bindings, which has some benefits:

* If you use compiled bindings and the property you bind to is not found, you will get a compile-time error. Hence you get a much better debugging experience.
* Reflection is known to be slow ([see this article on codeproject.com](https://www.codeproject.com/Articles/1161127/Why-is-reflection-slow)). Using compiled bindings can therefore improve the performance of your application.
* Reflection is known to be slow ([see this article on codeproject.com](https://www.codeproject.com/articles/Why-is-Reflection-Slow)). Using compiled bindings can therefore improve the performance of your application.

## Enable and disable compiled bindings

Expand Down