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
(3520)
Blogs
(2110)
Resources
(71)
Videos
(96)
News
(17)
Blogs
Mastering Efficiency: A Guide to Writing Optimized Code in C#
Writing optimized code in C# is not just about achieving faster execution times; it's also about enhancing the readability, maintainability, and scalability of your codebase. In this blog post,...
Chetan Sanghani
Jun 01, 2024
The Difference Between 'is' and 'as' Operators
The difference between 'is' and 'as' operators.'is' checks compatibility of runtime type, 'as' converts compatible types. 'is' sends true if types match, fal...
Garima Taneja
May 28, 2024
C# IComparer Explained: How to Implement and Use It
In the world of C# programming, efficient sorting and comparison of objects are crucial. Whether you're dealing with complex data structures or simply want to sort a list of items, the ICompare...
Byron Duarte
May 26, 2024
Discover the Power of C# Extension Methods
Extension methods provide the ability to incorporate additional methods into existing types without the need to create a new derived type, recompile the code, or make any alterations to the origina...
Sanjay Kumar
May 17, 2024
How to Split the String from Colon (:) or Fetching Specific Value
How to split the string from Colon (:) or fetching specific first or second colon string in C#, Type Script, tsx file. To extract specific parts of a string in C# or TypeScript based on colon (:), ...
U T
May 16, 2024
Add, Edit & Delete Operations on DataTable in C# .NET
Whether you're dealing with a simple data set or a complex relational structure, DataTable offers a versatile solution for performing operations like adding, editing, and deleting rows with eas...
Jitendra Mesavaniya
May 05, 2024
Achieving Optimal Utilization of Enum in C#
Within the C# programming language, an enum, which is short for "enumeration," serves as a unique data type comprised of a group of named constants known as enumerators.
Sanjay Kumar
May 04, 2024
How to Convert Between Hexadecimal Strings and Numeric Types?
These examples show you how to perform the following tasks: Obtain the hexadecimal value of each character in a string. Obtain the char that corresponds to each value in a hexadecimal string. Conve...
Jitendra Mesavaniya
May 01, 2024
How to Work with Nullable Types in C#
Nullable is a term in C# that allows an extra value null to be owned by a form. We will learn in this article how to work with Nullable types in C#.
Jitendra Mesavaniya
Apr 29, 2024
How to Solve Merge Conflicts While Creating a Master PR
Open Visual Studio, switch to the master branch, sync or get the latest changes. Create a new branch under master. Navigate to branch history, cherry-pick your PR, resolve conflicts, and push chang...
U T
Apr 24, 2024
Null in C#: Handling Absent Values & Nullable Types
Explore the concept of NULL in databases and programming languages, where it signifies the absence of a value or the lack of data. Understand its significance in SQL, its role as a placeholder, and...
Manoj Puri
Apr 23, 2024
How to Easily Extract Plain Text from HTML in C#
Discover how to efficiently extract plain text from rich HTML content using Regex in C#. Follow our step-by-step guide to implement a simple method that enhances data processing in your applications.
Dwarkesh Vajjala
Apr 21, 2024
Learn about Windows Service in C#
Learn how to create Windows Services in C# with this comprehensive guide. Explore the .NET Framework to build robust background processes.
Manideep Nampally
Apr 21, 2024
Explain Background Service in C#
Learn to implement background services in C# for efficient multitasking. Explore asynchronous programming techniques, including async/await pattern, timers, and threading.
Manideep Nampally
Apr 21, 2024
Utilization of ObservableCollection in C#
Discover how ObservableCollection in C# revolutionizes UI development by enabling dynamic data binding and real-time updates.
Sanjay Kumar
Apr 19, 2024
Exploring C# 9's Record Types
Records in C# provide a succinct and expressive syntax for defining immutable data types. In this simple blog post we will go over the basics of C# 9's record types, checking out how they work,...
Lalji Dhameliya
Apr 16, 2024
SOLID Principles: SRP, OCP, LSP, ISP, DIP in Software Design
SOLID principles in C# guide software design: SRP - one class, one responsibility; OCP - extend without modifying; LSP - substitute base classes; ISP - clients only need what they use; DIP - depend...
U T
Apr 15, 2024
Enhancing Code Clarity through Named Parameters in C#
Named arguments in C# allow you to specify arguments for a method by providing the parameter name followed by a colon and then the value. This feature was introduced in C# 4.0.
Sanjay Kumar
Apr 13, 2024
What is Singleton Design Pattern
The Singleton Design Pattern ensures that a class has only one instance and provides a global point of access to it. It's useful for scenarios requiring shared resources, logging, or managing c...
Aniket Narvankar
Apr 09, 2024
Static Keyword: Instantiation, Usage, and Best Practices
Static keyword's role in instantiating classes once internally. Differentiate between using static and non-static methods, exploring instantiation and usage in C#. Learn the benefits and limita...
Jongbo Im
Apr 08, 2024
No Records Available.
21
-
40
of
2029
<<
1
2
3
4
5
>>
Learn C# 8.0
Challenge yourself
C# Skill
E-Book Download
Get Certified
Blazor