.NET Ramblings
open-menu closeme
Home
Videos
Feeds
About
Contribute
github linkedin
  • Prototype Pattern Real-World Example in C#: Complete Implementation

    calendar Mar 13, 2026 · devleader.ca
    Prototype Pattern Real-World Example in C#: Complete Implementation

    Prototype pattern real-world example in C#: complete implementation with game object system, code examples, and practical use case demonstration. Link to article: https://www.devleader.ca/2026/03/13/prototype-pattern-realworld-example-in-c-complete-implementation


    Read More
  • Build an AI Code Review Bot with Semantic Kernel in C#

    calendar Mar 12, 2026 · devleader.ca
    Build an AI Code Review Bot with Semantic Kernel in C#

    Learn to build an AI code review bot with Semantic Kernel in C#. Uses ChatCompletionAgent with four plugins for bug, security, performance, and style review. Link to article: https://www.devleader.ca/2026/03/12/build-an-ai-code-review-bot-with-semantic-kernel-in-c


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

    calendar Mar 12, 2026 · devleader.ca
    Strategy Pattern Real-World Example in C#: Complete Implementation

    Strategy pattern real-world example in C#: complete implementation of an e-commerce discount system with multiple discount strategies and practical code examples. Link to article: https://www.devleader.ca/2026/03/12/strategy-pattern-realworld-example-in-c-complete-implementation


    Read More
  • ChatCompletionAgent vs AssistantAgent in Semantic Kernel: Which Should You Use?

    calendar Mar 11, 2026 · devleader.ca
    ChatCompletionAgent vs AssistantAgent in Semantic Kernel: Which Should You Use?

    Compare ChatCompletionAgent vs AssistantAgent in Semantic Kernel for C#. Learn key differences and when to use each agent type for your .NET AI application. Link to article: https://www.devleader.ca/2026/03/11/chatcompletionagent-vs-assistantagent-in-semantic-kernel-which-should-you-use


    Read More
  • Tool Approval and Human-in-the-Loop in Microsoft Agent Framework

    calendar Mar 11, 2026 · devleader.ca
    Tool Approval and Human-in-the-Loop in Microsoft Agent Framework

    Learn how to implement microsoft agent framework tool approval human in the loop patterns in C# to keep AI agents safe, auditable, and under human control. Link to article: https://www.devleader.ca/2026/03/11/tool-approval-and-humanintheloop-in-microsoft-agent-framework


    Read More
  • Prototype vs Factory Pattern in C#: Key Differences Explained

    calendar Mar 11, 2026 · devleader.ca
    Prototype vs Factory Pattern in C#: Key Differences Explained

    Prototype vs Factory pattern in C#: key differences explained, when to use each pattern, and how they compare for object creation in creational design patterns. Link to article: https://www.devleader.ca/2026/03/11/prototype-vs-factory-pattern-in-c-key-differences-explained


    Read More
  • Multi-Agent Orchestration with Semantic Kernel in C#: AgentGroupChat and Selection Strategies

    calendar Mar 10, 2026 · devleader.ca
    Multi-Agent Orchestration with Semantic Kernel in C#: AgentGroupChat and Selection Strategies

    Learn multi-agent orchestration Semantic Kernel C# with AgentGroupChat, selection strategies, and termination patterns for specialized agents in .NET. Link to article: https://www.devleader.ca/2026/03/10/multiagent-orchestration-with-semantic-kernel-in-c-agentgroupchat-and-selection-strategies


    Read More
  • Strategy vs State Pattern in C#: Key Differences Explained

    calendar Mar 10, 2026 · devleader.ca
    Strategy vs State Pattern in C#: Key Differences Explained

    Strategy vs State pattern in C#: key differences, when to use each behavioral pattern, and implementation examples to help you choose the right pattern. Link to article: https://www.devleader.ca/2026/03/10/strategy-vs-state-pattern-in-c-key-differences-explained


    Read More
  • Building AI Agents with Semantic Kernel in C#: A Practical Step-by-Step Guide

    calendar Mar 9, 2026 · devleader.ca
    Building AI Agents with Semantic Kernel in C#: A Practical Step-by-Step Guide

    Learn how to build AI agents with Semantic Kernel in C# from scratch. Create ChatCompletionAgent, configure instructions, add plugins, manage conversation threads, and build production-ready AI agents in .NET. Link to article: …


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

    calendar Mar 9, 2026 · devleader.ca
    Prototype Pattern Best Practices in C#: Code Organization and Maintainability

    Prototype pattern best practices in C#: code organization, maintainability tips, shallow vs deep copy strategies, and professional implementation guidelines. Link to article: https://www.devleader.ca/2026/03/09/prototype-pattern-best-practices-in-c-code-organization-and-maintainability


    Read More
  • The Gap Between Good Developers and Great Ones - Dev Leader Weekly 130

    calendar Mar 8, 2026 · devleader.ca
    The Gap Between Good Developers and Great Ones - Dev Leader Weekly 130

    Welcome to another issue of Dev Leader Weekly! In this issue, I discuss why communication with non-technical stakeholders is the skill that separates good developers from truly great ones. Link to article: https://www.devleader.ca/2026/03/08/the-gap-between-good-developers-and-great-ones-dev-leader-weekly-130


    Read More
  • Semantic Kernel Plugin Best Practices and Patterns for C# Developers

    calendar Mar 8, 2026 · devleader.ca
    Semantic Kernel Plugin Best Practices and Patterns for C# Developers

    Master semantic kernel plugin best practices for C# developers. Learn KernelFunction descriptions, error handling, and production patterns. Link to article: https://www.devleader.ca/2026/03/08/semantic-kernel-plugin-best-practices-and-patterns-for-c-developers


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

    calendar Mar 8, 2026 · devleader.ca
    Strategy Pattern Best Practices in C#: Code Organization and Maintainability

    Strategy pattern best practices in C#: code organization, maintainability tips, dependency injection, testing strategies, and professional implementation guidelines. Link to article: https://www.devleader.ca/2026/03/08/strategy-pattern-best-practices-in-c-code-organization-and-maintainability


    Read More
  • Semantic Kernel OpenAPI Plugin Integration in C#: Connect Any REST API as an AI Tool

    calendar Mar 7, 2026 · devleader.ca
    Semantic Kernel OpenAPI Plugin Integration in C#: Connect Any REST API as an AI Tool

    Master Semantic Kernel OpenAPI plugin integration in C# to connect REST APIs as AI tools. Import specs, configure auth, and invoke endpoints. Link to article: https://www.devleader.ca/2026/03/07/semantic-kernel-openapi-plugin-integration-in-c-connect-any-rest-api-as-an-ai-tool


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

    calendar Mar 7, 2026 · devleader.ca
    When to Use Prototype Pattern in C#: Decision Guide with Examples

    When to use Prototype pattern in C#: decision guide with examples, use cases, and scenarios where cloning objects is better than creating new instances. Link to article: https://www.devleader.ca/2026/03/07/when-to-use-prototype-pattern-in-c-decision-guide-with-examples


    Read More
  • Semantic Kernel Function Calling in C#: Native vs Prompt Functions Explained

    calendar Mar 6, 2026 · devleader.ca
    Semantic Kernel Function Calling in C#: Native vs Prompt Functions Explained

    Understand Semantic Kernel function calling in C# -- the difference between native functions and prompt functions, how auto-invoke works, FunctionChoiceBehavior options, and when to use each type in your .NET AI applications. Link to article: …


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

    calendar Mar 6, 2026 · devleader.ca
    When to Use Strategy Pattern in C#: Decision Guide with Examples

    When to use Strategy pattern in C#: decision criteria, code examples, and scenarios to determine if Strategy pattern is the right choice for your application. Link to article: https://www.devleader.ca/2026/03/06/when-to-use-strategy-pattern-in-c-decision-guide-with-examples


    Read More

.NET Ramblings

Copyright  .NET RAMBLINGS. All Rights Reserved

to-top