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
(3474)
Blogs
(2101)
Resources
(71)
Videos
(96)
News
(17)
Articles
IQueryable vs IEnumerable
IQueryable vs IEnumerable" explores the differences between these two interfaces in C#. IQueryable is suitable for building dynamic queries against a database, allowing deferred execution and ...
Rikam Palkar
Jun 22, 2020
Comprehensive Guide to C# Programming for Developers
C# (C sharp) is a versatile programming language by Microsoft, ideal for web, desktop, mobile, cloud, and gaming apps. It features strong typing, garbage collection, and extensive libraries.
Chetan Sanghani
Jun 06, 2024
The One Behind Concurrency in C#
The Thread Pool in C# simplifies concurrency by managing threads for you. Unlike creating and managing threads yourself, the Thread Pool offers a pool of reusable threads, improving performance and...
Tural Suleymani
Jun 04, 2024
C# Basic OOPs Concepts
"Basic OOPs concepts in C# involve classes, objects, inheritance, encapsulation, and polymorphism. It includes access modifiers, constructors, and destructors, along with method overloading an...
Kiran Mohanty
Sep 21, 2020
Working with binary large objects (BLOBs)
BLOBs (Binary Large Objects) efficiently store large files (images, videos) in databases. Saving/retrieving them involves managing memory usage for optimal performance. This article explores C# tec...
Amr Monjid
Mar 31, 2008
CRUD Operation In C# Windows Application Using Store Procedure
This guide explores implementing CRUD operations in a C# Windows Forms application using stored procedures. Learn to connect to SQL Server, execute stored procedures, and handle data efficiently.
Yogeshkumar Hadiya
Nov 16, 2020
Create Immutable Type In C#
A public constructor that accepts initialization data is required so that the client can pass-in minimum state for the type to be valid. Private constructor, on the other hand, is used by methods t...
Guest User
Sep 14, 2017
The Simplicity of the New Terse Syntax [ Collection Expressions ]
Explore the elegance of the latest terse syntax for collection expressions, offering unparalleled simplicity in programming. Dive into efficient coding techniques, optimized syntax, and enhanced re...
Rikam Palkar
Jun 03, 2024
Custom Collection Classes in C#
Learn how to create a custom collection class in C#, utilizing the Customer class with attributes. Implement and manage customer data with CollectionBase, including methods for adding, removing, an...
Senthilkumar
Feb 24, 2012
Creating & Retrieving Records from Ms-Access 03 using Oledb in C#
Learn how to efficiently create and retrieve records from an MS Access 2003 database using OLEDB in C#. This guide covers setting up the OLEDB connection, executing SQL commands, and handling data ...
Prashanth Chindam
Sep 27, 2010
TextPad Application in C#
This C# code defines a simple text editor application in Windows Forms. It includes functionalities to open, save, clear text, and exit. File handling operations are performed using StreamReader an...
Prashanth Chindam
Sep 27, 2010
The Is and As Operators in C#
In C#, the "is" operator checks if an object is of a specified type, returning a boolean. The "as" operator attempts to cast an object to a specified type, returning null if the...
Abhimanyu K Vatsa
Jul 05, 2011
New Year Application using C#.NET
Develop a Windows app in C# .Net using the Microsoft Speech Object Library to deliver New Year wishes. Steps include adding the Speech Object Library reference, designing the UI with a Label, TextB...
Prashanth Chindam
Jan 03, 2011
Inserting & Retrieving records from M.S.Excel-2007 using oledb in C#.net
This guide covers how to insert and retrieve records from Microsoft Excel 2007 using OLEDB in C#.NET. It explains setting up OLEDB connections, executing SQL commands for data manipulation, and han...
Prashanth Chindam
Nov 01, 2010
Guess the Celebrity
Develop a Windows app for guessing celebrity images. Design includes labels, textboxes, buttons, and image browsing. Code validates password, hides buttons, and allows image loading. Note: Password...
Prashanth Chindam
Nov 12, 2010
Do While Loop in C#
Do-while loop in C# guarantees execution of code block at least once. Syntax: do { /* Code */ } while (condition);. Steps involve code execution, condition evaluation, loop continuation, and termin...
Sreenath Kappoor
May 28, 2024
Exception Filtering: A New Feature of C# 6.0
Exception filtering, a notable addition in C# 6.0, enhances error handling by allowing catch blocks to specify conditions for exception handling. This feature, employing the 'when' keyword,...
Abhishek Arora
Dec 29, 2014
String Interpolation: A New Feature of C# 6.0
The provided C# 6.0 code demonstrates the use of string interpolation, auto-implemented properties, and object initialization syntax. It showcases the nameof operator to retrieve variable names sta...
Abhishek Arora
Dec 30, 2014
Auto Property Initializer: A New Feature of C# 6.0
Auto Property Initializer, a feature in C# 6.0, simplifies property initialization by allowing default values to be assigned directly within property declarations. This enhances code readability an...
Abhishek Arora
Jan 08, 2015
Synchronous Asynchronous Blocking Non-Blocking Concurrent Parallel Programming
Explore the intricacies of programming paradigms with a comprehensive dive into synchronous, asynchronous, blocking, non-blocking, concurrent, and parallel execution.
Ayush Gupta
May 29, 2024
No Records Available.
161
-
180
of
3474
<<
7
8
9
10
11
>>
Learn C# 8.0
Challenge yourself
C# Skill
E-Book Download
Get Certified
Github Copilot