Extension
Everything on SkillVeris tagged Extension — collected across the glossary, study notes, blog, and cheat sheets.
9 resources across 2 libraries
Study Notes(8)
The Binding Markup Extension
How {Binding} connects UI properties to data-source properties, including Path, Mode, and source-resolution options.
Custom Markup Extensions
How to author a custom MarkupExtension by overriding ProvideValue, and when to reach for one instead of a converter or plain binding.
Custom LINQ Extension Methods
Learn how to write your own LINQ-style extension methods on IEnumerable<T>, including deferred execution with yield return and chaining conventions.
Selenium with JUnit
Learn how JUnit 5's lifecycle annotations, extension model, and tagging integrate with Selenium WebDriver to build maintainable Java test suites.
Tcl and C Extension Basics
Understand how to extend Tcl with compiled C code — writing custom commands, managing the Tcl_Obj type system, and building a loadable extension.
Extension Methods
Learn how Dart's extension methods let you add new functionality to existing types — including types you don't own, like String or int — without subclassing or…
Extension Functions in Kotlin
Learn how Kotlin extension functions let you add new behavior to existing classes without modifying or inheriting them.
Extension Methods
Extension methods let you add new callable methods to existing types, including sealed or third-party ones, without modifying their source or subclassing.