Resources  
  • 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 CApr 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 ProductionJun 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 JavaOct 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 OperatorsOct 19, 2012. Today, we are going to discuss JavaScript-Operators through examples.
  • My First C# ProgramSep 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.