TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
C#
FOLLOW
C# is a multi-paradigm programming language. This section contains C# related articles and syntaxes.
Articles
(3504)
Blogs
(2104)
Resources
(71)
Videos
(96)
News
(17)
Articles
Implementing Logging in C# 9.0
This article explores the fundamentals of logging in C# 9.0, showcasing the importance of logging and how to implement it using different frameworks such as Microsoft.Extensions.Logging, NLog, and ...
Subarta Ray
Dec 04, 2024
How to Reverse Number in C#
Learn two methods to reverse a number in C#: using arithmetic operations and `string.Reverse()`. This essential C# interview topic is explained with practical code examples and outputs.
Kirtesh Shah
Dec 03, 2024
Scaffolding in C# 9.0: Building Fast & Efficient Code Structures
Scaffolding in C# 9.0 streamlines application development by automating code generation for controllers, views, and models. It enhances productivity with simplified syntax, improved performance, an...
Subarta Ray
Dec 03, 2024
How to Reverse a String in C#?
Explore four methods to reverse a string in C#: using string.Reverse(), Array.Reverse(), for loop, and foreach loop. Ideal for interview preparation with practical examples and outputs.
Kirtesh Shah
Dec 03, 2024
When to Use Abstract Class vs Interface and Why?
This article explains when to use abstract classes vs. interfaces in C# through two scenarios. The first scenario demonstrates how abstract classes help avoid code duplication, while the second sho...
Ng Cheehou
Nov 29, 2024
C# Foundation - Nullable Types
This article covers the basics, syntax, and practical use cases of nullable types, enabling you to write safer, more reliable code by avoiding null reference errors effectively.
Praveen Raveendran Pillai
Nov 28, 2024
C# Foundation - Implicitly Typed Variables
Implicitly typed variables in C#, declared using the var keyword, let the compiler infer the data type from the initialization expression. This improves code readability and reduces verbosity, espe...
Praveen Raveendran Pillai
Nov 28, 2024
High-Performance Apps Using C# Span<T>
Often in application we come scenarios where we need to perform string manipulation operations. In such cases using string type take up huge memory as it is immutable. Instead Span can be used, whi...
Santosh Karanam
Jan 29, 2024
Factory Design Pattern Using Delegates In C#
Factory Pattern is a creational design pattern that provides a way to encapsulate object creation. Instead of directly instantiating objects, you delegate the creation process to a factory class.
Praveen Raveendran Pillai
Nov 27, 2024
Format Literal Strings in C#
Different techniques to display special characters and add different types of formatting to the output. This article explores C# string literals, including regular, verbatim, and interpolated strin...
Jalpa Dhola
Nov 26, 2024
Exploring Advanced Generics in C#: A Practical Guide with Examples
This article aims to provide a guided tour of some advanced topics in C# generics, such as constraints, covariance and contravariance, and custom generic interfaces.
Ng Cheehou
Nov 25, 2024
Bulk Import of ID Card Data from Excel in ASP.NET MVC C#
This guide covers the process of parsing Excel files, extracting data, and inserting it into a database, ensuring smooth data handling and optimization for large datasets in a seamless, automated p...
Velladurai
Nov 22, 2024
Advanced C# 13 and .NET 9 Features for Expert .NET Engineers
With this guide, you will learn about enhanced pattern matching, static abstract members, Native AOT, and much more in C# 13 and .NET 9. Written by Ziggy Rafiq, this is the best resource for experi...
Ziggy Rafiq
Nov 22, 2024
What's New in C# 13?
C# 13 introduces versatile features like enhanced `params` collections, scoped locking, and partial properties, boosting code flexibility, performance, and developer productivity for high-quality a...
Vijay Kumari
Nov 15, 2024
How to Read and Write JSON Files in C#
JSON is a common data format used in APIs, configuration files, and data exchange. Learn to handle JSON in C# using `System.Text.Json`. This article covers creating data models, writing to and rea...
Jalpa Dhola
Nov 17, 2024
Sorting with IComparable in C#
Learn how to implement the IComparable interface in C# to customize sorting behavior for objects. Explore sorting techniques, comparisons, and examples to efficiently order data in collections like...
Praveen Raveendran Pillai
Nov 14, 2024
Testing API Endpoints Using C# and Swagger
Learn how to test API endpoints effectively using C# and Swagger. This guide covers setting up Swagger for API documentation, configuring C# for testing endpoints, and automating tests to ensure re...
Jalpa Dhola
Nov 14, 2024
Understanding IEnumerable In C#
IEnumerable in C# is an interface that defines a standard way to iterate over a collection of objects. The IEnumerable interface in C# provides a standard, efficient way to iterate over collections...
Praveen Raveendran Pillai
Nov 14, 2024
Converting HTML to PDF or Image in C# Using wkhtmltopdf Part 2 - Header & Footer
In this tutorial, learn how to convert HTML to PDF or image in C# using wkhtmltopdf. This part covers adding and customizing headers and footers in your generated PDFs, enhancing document structure...
Vinoth Xavier
Nov 13, 2024
Converting HTML to PDF or Image in C# Using wkhtmltopdf
This guide explains generating PDFs and images from HTML using wkhtmltopdf in C#. With wkhtmltopdf's Webkit-based engine, convert HTML content, including complex CSS and JavaScript, into high-q...
Vinoth Xavier
Nov 05, 2024
No Records Available.
21
-
40
of
3504
<<
1
2
3
4
5
>>
Learn C# 8.0
Challenge yourself
C# Skill
E-Book Download
Get Certified
EF Core