C# Corner
Tech
News
Videos
Forums
Trainings
Books
Live
More
Interviews
Events
Jobs
Learn
Career
Members
Blogs
Challenges
Certifications
Bounties
Contribute
Article
Blog
Video
Ebook
Interview Question
Collapse
Feed
Dashboard
Wallet
Learn
Achievements
Network
Refer
Rewards
SharpGPT
Premium
Contribute
Article
Blog
Video
Ebook
Interview Question
Register
Login
Tags
No tag found
Content Filter
Articles
Videos
Blogs
Resources
News
Forums
Interviews
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Baibhav Kumar(1)
Shikha Tiwari(1)
Sudarshan Hajare(1)
Sandip G Patil(1)
Satendra Singh Bhati(1)
Ahmar Husain(1)
Sonia Bhadouria Vishvkarma(1)
Mahesh Chand(1)
Resources
No resource found
What’s the difference between static, public, and void in C#?
Aug 06, 2025.
A clear guide explaining the meanings of the keywords public, static, and void as used in C# methods, what each does, how they interact, and typical use cases like the Main() method.
Dereferencing Pointers and Void Pointers in C
Apr 29, 2024.
Dereferencing pointers involves accessing the value stored at the memory address pointed to by a pointer. Void pointers in C are generic pointers that can point to any data type but require explicit typecasting before dereferencing to access the correct data.
Async/Await Pitfalls in C#: The Bugs That Compile Fine and Break in Production
Jun 30, 2026.
Master C# async/await: Avoid hidden bugs like async void, deadlocks, and forgotten awaits that compile but break in production.
Overview Of Delegate Concept In C#
Jan 19, 2017.
Delegates in C# are objects that hold references to methods. They enable callback functionality and event handling. There are single-cast and multicast delegates, supporting both void and non-void return types, offering type safety and flexible method invocation.
Main Method in Java
Oct 15, 2013.
In this article you will learn about the main method in Java and the important things to remember about the main method in Java.
Change Number To Words In C#
Jan 24, 2013.
Recently in my current project I came across a problem where I need to generate a customer invoice where I needed to convert total amount into its verbal representation
JavaScript Operators
Oct 19, 2012.
Today, we are going to discuss JavaScript-Operators through examples.
My First C# Program
Sep 29, 2000.
This article explains how to create your first C# program.My First C# Program" is a simple introductory program often created by beginners learning the C# programming language. It serves as a basic demonstration of how to write, compile, and execute a C# program. The program typically outputs a message, such as "Hello, World!", to the console. This exercise helps beginners understand the basic structure of a C# program and how to use the Console.WriteLine() method to display text.