Courses
Tutorials
Interview Prep
DSA
Practice Problems
C
C++
Java
Python
JavaScript
Data Science
Machine Learning
Courses
Linux
DevOps
Similar Topics
Web Technologies
32.1K+ articles
DSA
20.4K+ articles
Python
19.6K+ articles
Experiences
15.8K+ articles
Interview Experiences
14.5K+ articles
School Learning
11.1K+ articles
C#
2.0K+ articles
CSharp-string
58+ articles
CSharp-Basics
39+ articles
CSharp-Decision Making
5+ articles
CSharp-ControlFlow
7 posts
Recent Articles
C# - continue Statement
Last Updated: 14 October 2020
In C#, the continue statement is used to skip over the execution part of the loop(do, while, for, or foreach) on a certain condition, after that, it transfers the control ...
read more
C#
CSharp-ControlFlow
Nested loops in C#
Last Updated: 08 September 2025
Nested loops are those loops that are present inside another loop. In C#, you can nest for, while and do-while loops inside each other and any type of loop can be placed w...
read more
C#
CSharp-Decision Making
CSharp-ControlFlow
C# Switch Statement
Last Updated: 11 July 2025
In C#, Switch statement is a multiway branch statement. It provides an efficient way to transfer the execution to different parts of a code based on the value of the expre...
read more
C#
CSharp-ControlFlow
C# | Using foreach loop in arrays
Last Updated: 11 July 2025
C# language provides several techniques to read a collection of items. One of which is foreach loop. The foreach loop provides a simple, clean way to iterate through the e...
read more
Technical Scripter
C#
Picked
Technical Scripter 2018
CSharp-Arrays
CSharp-ControlFlow
C# | How to use strings in switch statement
Last Updated: 11 July 2025
The switch statement is a multiway branch statement. It provides an easy way to forward execution to different parts of code based on the value of the expression. String i...
read more
C#
CSharp-string
CSharp-ControlFlow
C# foreach Loop
Last Updated: 20 April 2026
Foreach loop in C# is a special type of loop designed to iterate through collections like arrays, lists, and other enumerable data types. It simplifies the process of acce...
read more
C#
CSharp-Basics
CSharp-Decision Making
CSharp-ControlFlow
C# Decision Making (if, if-else, if-else-if ladder, nested if, switch, nested switch)
Last Updated: 23 April 2026
Decision Making in programming is similar to decision making in real life. In programming too, a certain block of code needs to be executed when some condition is fulfille...
read more
C#
CSharp-Basics
CSharp-ControlFlow