Browsing Tag
csharp
99 posts
What Your .NET Exceptions Are Telling Attackers (And How to Stop It)
How unhandled exceptions leak stack traces, connection strings, and internal architecture — and how to fix it properly…
Production RAG with Semantic Kernel: Patterns, Chunking, and Retrieval Strategies
Retrieval-Augmented Generation (RAG) is the pattern that makes LLMs genuinely useful for enterprise applications. Instead of relying solely…
The 11 Most Popular NuGet Packages to Know in 2026 (updated!)
In the .NET ecosystem, NuGet remains the primary package manager for dependencies — and some libraries continue to…
21. C# (while Loop 2)
Goal Ask the user to enter a word If the word length is less than 15 Keep appending…
Bug Resistant Development: Fail Fast – Part 1 (RequireComponent & OnValidate)
It’s been a while since I last posted a blog. I was busy with a few things, I…
Sentiment Analysis in C# – Without Python or External APIs
Sentiment Analysis You have text. You want to know if it’s positive, negative, or neutral. The usual options:…
Class, Object, Property and Methods in C#
Originally published at https://allcoderthings.com/en/article/csharp-class-object-property-method In Object-Oriented Programming (OOP), a class is a template that gathers the data (properties)…
Dapper Micro-ORM Explained
What Is Dapper? Dapper is classed as a micro ORM. That means it is still an Object–Relational Mapper,…
From Animation to Game Feel: My RPG Battle System Development Log
This post records how, while building an RPG prototype in Unity, I integrated character animation, effect systems, combo…
How I automated my EF Core boilerplate code (Visual Modeling)
Hey devs, Like many of you, I’ve spent way too many hours writing manual OnModelCreating code and mapping…