Take advantage of default interface methods in C# 8.0 to add new methods to an interface without breaking existing implementations. One of the new and interesting features in C# 8.0 is the support for ...
When working in applications you might often find that the source code has become so complex that it is difficult to understand and maintain. Fluent interfaces and method chaining are two concepts ...
It’s challenging enough to design a single effective interface for a product or application. Now, driven by technological advances and rising consumer expectations, a growing number of products can ...
Glade is a GUI builder for the Gtk+ toolkit. Glade makes it easy to create user interfaces interactively, and it can generate source code for those interfaces as well as stubs for user interface ...
The IComparable interface lets you create objects that know how to sort themselves correctly. This interface also provides an example of a high-level strategy for building and extending your classes.
In my great big mess of "I've never done much winforms before, so let's do something difficult" code, I've run into a problem. I have several hundred user controls I need to load up at runtime, and it ...