.NET Ramblings
open-menu closeme
Home
Videos
Feeds
About
Contribute
github linkedin
  • LINQ Grouping in C#: GroupBy, ToLookup, CountBy, and AggregateBy

    calendar May 11, 2026 · devleader.ca
    LINQ Grouping in C#: GroupBy, ToLookup, CountBy, and AggregateBy

    Master LINQ grouping in C# with GroupBy, ToLookup, and the powerful .NET 9 CountBy and AggregateBy methods for cleaner data aggregation. Link to article: https://www.devleader.ca/2026/05/11/linq-grouping-in-c-groupby-tolookup-countby-and-aggregateby


    Read More
  • What Your Working Hours Signal To Your Team - Dev Leader Weekly 139

    calendar May 11, 2026 · devleader.ca
    What Your Working Hours Signal To Your Team - Dev Leader Weekly 139

    Welcome to another issue of Dev Leader Weekly! In this issue, I discuss the perception trap around working hours -- why your start time doesn't define your work ethic on its own, but your hours absolutely shape what your team thinks is expected of them. Link to article: …


    Read More
  • Bridge Pattern Real-World Example in C#: Complete Implementation

    calendar May 11, 2026 · devleader.ca
    Bridge Pattern Real-World Example in C#: Complete Implementation

    Build a production-ready bridge pattern example in C# with a notification delivery system covering multiple channels, message priorities, and DI integration. Link to article: https://www.devleader.ca/2026/05/11/bridge-pattern-realworld-example-in-c-complete-implementation


    Read More
  • LINQ Ordering in C#: OrderBy, ThenBy, Order, and Custom Comparers

    calendar May 10, 2026 · devleader.ca
    LINQ Ordering in C#: OrderBy, ThenBy, Order, and Custom Comparers

    Master LINQ ordering in C# with OrderBy, ThenBy, and the .NET 7 Order() method. Covers custom IComparer, stable sort, StringComparer, and real-world examples. Link to article: https://www.devleader.ca/2026/05/10/linq-ordering-in-c-orderby-thenby-order-and-custom-comparers


    Read More
  • How to Implement Flyweight Pattern in C#: Step-by-Step Guide

    calendar May 10, 2026 · devleader.ca
    How to Implement Flyweight Pattern in C#: Step-by-Step Guide

    Step-by-step guide to implement flyweight pattern in C# with practical code examples covering shared state, flyweight factories, and memory optimization. Link to article: https://www.devleader.ca/2026/05/10/how-to-implement-flyweight-pattern-in-c-stepbystep-guide


    Read More
  • LINQ Projection in C#: Select, SelectMany, and Flattening Collections

    calendar May 9, 2026 · devleader.ca
    LINQ Projection in C#: Select, SelectMany, and Flattening Collections

    Learn LINQ projection in C# with Select, SelectMany, and the .NET 9 Index() method. Covers anonymous types, records, flattening nested collections, and real examples. Link to article: https://www.devleader.ca/2026/05/09/linq-projection-in-c-select-selectmany-and-flattening-collections


    Read More
  • Bridge vs Adapter Pattern in C#: Key Differences Explained

    calendar May 9, 2026 · devleader.ca
    Bridge vs Adapter Pattern in C#: Key Differences Explained

    Compare bridge vs adapter pattern in C# with side-by-side code examples, key structural differences, and guidance on when to use each. Link to article: https://www.devleader.ca/2026/05/09/bridge-vs-adapter-pattern-in-c-key-differences-explained


    Read More
  • LINQ Filtering in C#: Where, Any, All, Contains, and OfType

    calendar May 8, 2026 · devleader.ca
    LINQ Filtering in C#: Where, Any, All, Contains, and OfType

    Learn LINQ filtering in C# with Where, Any, All, Contains, and OfType. Covers compound predicates, null handling, and performance tips with .NET 6-9 examples. Link to article: https://www.devleader.ca/2026/05/08/linq-filtering-in-c-where-any-all-contains-and-oftype


    Read More
  • Flyweight Design Pattern in C#: Complete Guide with Examples

    calendar May 8, 2026 · devleader.ca
    Flyweight Design Pattern in C#: Complete Guide with Examples

    Master the flyweight design pattern in C# with practical examples showing shared state optimization, memory reduction, and object pool management. Link to article: https://www.devleader.ca/2026/05/08/flyweight-design-pattern-in-c-complete-guide-with-examples


    Read More
  • LINQ in C#: Complete Guide to Language Integrated Query (.NET 6-9)

    calendar May 7, 2026 · devleader.ca
    LINQ in C#: Complete Guide to Language Integrated Query (.NET 6-9)

    Master LINQ in C# with this complete guide covering filtering, projection, ordering, grouping, joins, and every new operator added in .NET 6 through .NET 10. Link to article: https://www.devleader.ca/2026/05/07/linq-in-c-complete-guide-to-language-integrated-query-net-69


    Read More
  • Bridge Pattern Best Practices in C#: Code Organization and Maintainability

    calendar May 7, 2026 · devleader.ca
    Bridge Pattern Best Practices in C#: Code Organization and Maintainability

    Master bridge pattern best practices in C# including interface segregation, testability, DI registration strategies, and avoiding common anti-patterns. Link to article: https://www.devleader.ca/2026/05/07/bridge-pattern-best-practices-in-c-code-organization-and-maintainability


    Read More
  • C# Regex Replace and Split: MatchEvaluator, EnumerateSplits, and Substitutions

    calendar May 6, 2026 · devleader.ca
    C# Regex Replace and Split: MatchEvaluator, EnumerateSplits, and Substitutions

    Master C# Regex Replace and Split with MatchEvaluator delegates, substitution syntax, and .NET 8 EnumerateSplits for zero-allocation text processing. Link to article: https://www.devleader.ca/2026/05/06/c-regex-replace-and-split-matchevaluator-enumeratesplits-and-substitutions


    Read More
  • Facade Pattern Real-World Example in C#: Complete Implementation

    calendar May 6, 2026 · devleader.ca
    Facade Pattern Real-World Example in C#: Complete Implementation

    Build a complete facade pattern real-world example in C# with an e-commerce order processing system featuring payment, inventory, and notification subsystems. Link to article: https://www.devleader.ca/2026/05/06/facade-pattern-realworld-example-in-c-complete-implementation


    Read More
  • C# Regex Lookahead, Lookbehind, and Advanced Pattern Syntax

    calendar May 5, 2026 · devleader.ca
    C# Regex Lookahead, Lookbehind, and Advanced Pattern Syntax

    Master C# regex lookahead, lookbehind, backreferences, and zero-width assertions with practical .NET code examples for advanced pattern matching. Link to article: https://www.devleader.ca/2026/05/05/c-regex-lookahead-lookbehind-and-advanced-pattern-syntax


    Read More
  • When to Use Bridge Pattern in C#: Decision Guide with Examples

    calendar May 5, 2026 · devleader.ca
    When to Use Bridge Pattern in C#: Decision Guide with Examples

    Discover when to use the bridge pattern in C# with decision criteria, real-world use cases, and guidance on choosing bridge over simpler alternatives. Link to article: https://www.devleader.ca/2026/05/05/when-to-use-bridge-pattern-in-c-decision-guide-with-examples


    Read More

.NET Ramblings

Copyright  .NET RAMBLINGS. All Rights Reserved

to-top