Users Pricing

tag

home / developersection / tag
Earn a Free C# Certification from MindStick
mindstick 25 Aug 2025
Earn a Free C# Certification from MindStick

Earn a free C# certification from MindStick with hands-on training, practical projects, and industry-recognized credentials.

Excel to PDF Conversion in C#: Quick and Simple Tutorial
c# 22 Aug 2025
Excel to PDF Conversion in C#: Quick and Simple Tutorial

Easily convert Excel files to PDF in C# with a beginner-friendly guide. Discover step-by-step code examples to create high-quality, shareable PDF documents

Improve the performance of a slow-running LINQ query
c# 16 Jun 2025
Improve the performance of a slow-running LINQ query

Improving the performance of a slow-running LINQ query—especially when using Entity Framework or LINQ to SQL

Introduction to LINQ in C#
c# 22 Apr 2025
Introduction to LINQ in C#

the most powerful and elegant features in C#. It allows you to query collections, databases, XML.

C# Anonymous Methods – A Beginner's Guide
c# 22 Apr 2025
C# Anonymous Methods – A Beginner's Guide

Anonymous methods in C# are a powerful feature that allows you to define inline methods without giving them a name.

C# Indexers – Access Objects Like Arrays
c# 22 Apr 2025
C# Indexers – Access Objects Like Arrays

C# allow objects to be indexed like arrays. This is useful when your object represents a collection of values and you want to access its elements as an array

C# Attributes – A Beginner's Guide
c# 22 Apr 2025
C# Attributes – A Beginner's Guide

They are a powerful way to annotate classes, methods, properties, and other program elements with additional information

C# Strings: A Complete Guide for Beginners
c# 22 Apr 2025
C# Strings: A Complete Guide for Beginners

strings are used to store sequences of characters like names, sentences, file paths, and more.

C# Operators
c# 22 Apr 2025
C# Operators

C# Operators — including arithmetic, logical, comparison, assignment, bitwise, and more — with examples and descriptions

SQL Injection and Prevention in C#
ado.net 12 Feb 2025
SQL Injection and Prevention in C#

SQL Injection is a common security vulnerability that occurs when an attacker manipulates SQL queries by injecting malicious input, potentially allowing unautho

How to Verify Connection Pooling is Used in ADO.NET?
ado.net 12 Feb 2025
How to Verify Connection Pooling is Used in ADO.NET?

Connection pooling in ADO.NET allows reusing database connections instead of creating new ones for every request.

How to use Transaction in ADO.NET?
ado.net 12 Feb 2025
How to use Transaction in ADO.NET?

Here’s a full C# console application demonstrating ACID properties using ADO.NET with SQL Server.