Tag: Development

Community

Building .NET Controls @ Runtime

(Martin Zahn) .NET offers the possibility to create controls in Windows Form at runtime. Often we encounter a situation where we need to load controls dynamically on the form, as well as position and align them properly. Generally we do this when we are not sure about the number of controls to be di

Community

Extension Methods

(Jim Mischel) Extension methods allow you to add functionality to a class or interface without modifying the class or interface or creating a new derived type. An extension method is a special kind of static method that can be called as though it were an instance method on the extended type. In C# a