Tutorials
Courses
Data Structure
Java
Python
HTML
Interview Preparation
DSA
Practice Problems
C
C++
Java
Python
JavaScript
Data Science
Machine Learning
Courses
Linux
DevOps
SQL
Web Development
System Design
Aptitude
GfG Premium
Similar Topics
Web Technologies
32.8K+ articles
Python
20.1K+ articles
DSA
20.1K+ articles
Experiences
16.0K+ articles
Interview Experiences
14.2K+ articles
School Learning
11.3K+ articles
C#
1.9K+ articles
CSharp-string
58+ articles
CSharp-Basics
39+ articles
CSharp-Decision Making
5+ articles
CSharp-ControlFlow
7 posts
Recent Articles
Popular Articles
C# Decision Making (if, if-else, if-else-if ladder, nested if, switch, nested switch)
Last Updated: 13 January 2025
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
C# foreach Loop
Last Updated: 03 February 2025
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# | How to use strings in switch statement
Last Updated: 21 February 2023
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# Switch Statement
Last Updated: 11 January 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: 23 January 2023
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#- Nested loops
Last Updated: 14 October 2020
Nested loops are those loops that are present inside another loop. In C#, nesting of for, while, and do-while loops are allowed and you can also put any nested loop inside...
read more
C#
CSharp-Decision Making
CSharp-ControlFlow
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
We use cookies to ensure you have the best browsing experience on our website. By using our site, you acknowledge that you have read and understood our
Cookie Policy
&
Privacy Policy
Got It !