How to use ML.NET in C#
How to use ML.NET in C# Machine learning (ML) is a powerful tool that can be used to analyze and make predictions from data. C#… Read More »How to use ML.NET in C#
Software engineer with more than 12 years of experience. The creator of Scenario Hunting technique. Interested in blending concepts to find new ways to improve existing software development workflows.
How to use ML.NET in C# Machine learning (ML) is a powerful tool that can be used to analyze and make predictions from data. C#… Read More »How to use ML.NET in C#
How to Use Record Structs in C# Introduction to Record Structs in C# Record structs, introduced in C# 9.0, are a type of value type… Read More »How to Use Record Structs in C#
Do you know what ASP.NET Anti Forgery Tokens are? In the world of web development, security is of paramount importance. With the rise of cyber… Read More »ASP.NET Anti Forgery Tokens
C# Dapper is a lightwight ORM. In the world of software development, interacting with databases is a common task. Developers often use Object-Relational Mapping (ORM)… Read More »C# Dapper
Using Fluent Assertions, .NET developers can write more expressive and readable tests. Fluent Assertions is a library that provides a more natural way of writing… Read More »Using Fluent Assertions
This article introduces C# Mock Data generation. As software developers, we understand the importance of testing our code to ensure it works as intended. One… Read More »C# Mock Data
This article discusses the differences between C# Array vs List. Arrays and Lists are two fundamental data structures in C#. They both store collections of… Read More »C# Array vs List
This article is a general guide for C# collections performance optimization. C# collections are essential for storing and manipulating large amounts of data efficiently. However,… Read More »C# Collections Performance
In this article, I explain what queues are and how to use Queues in C#. Have you ever waited in line to buy tickets for… Read More »Queues in C#
This article introduces stacks in C#, what they are, and how they work in C#. It includes code examples of how to create and use… Read More »Stacks in C#