Search
 
SCRIPT & CODE EXAMPLE
 

CSHARP

c# do while loop

do {
   statement(s);
} while( condition );
_______________EX.___________________
int i = 0;

do
{
	Console.WriteLine(i);
	i++;
}
while (i < 5);

============OUTPUT======================
  0
  1
  2
  3
  4
Comment

do while loop in c#

# plz suscribe to my youtube channel -->
# https://www.youtube.com/channel/UC-sfqidn2fKZslHWnm5qe-A

do {
  Console.WriteLine("Emter the magic word");
  magic_string = Console.ReadLine();
  if(magic_string != "please");{
	 Console.WriteLine("{0} is not the corret magic word try again:- ",magic_string );
  }
}while ( magic_string != "please");
Comment

c# do while

do
{
	//Code here (will run at least once)
} while (true); //Condition to test for here
Comment

while c#

int repeats = 0; 
bool while = true; //creates a bool variable with the true value
while (while = true) //repeats the code in the curly brackets as long
{                    //as the value in the round brackets remains true
   repeats++; //increase the value inside repeats
}
Comment

C# while loop

int i = 1;
while(i != 0)
{
	//This code will loop
	Console.WriteLine("Say a number");
	i = int.Parse(Console.ReadLine());
}
Comment

while c#

int i = 0; // initialization

while (i < 10) // condition
{
    Console.WriteLine("i = {0}", i);

    i++; // increment
}
Comment

c# while loop

while(condition) 
{
   statement(s);
}
_______________EX.___________________
int a = 0;
while (a < 10)
{
	Console.WriteLine(a); //output>> 0 .. 1 .. 2 ........ 8 .. 9
	a++;
}
Comment

c# do while or

int sugar = 0;
int salt = 0;

do {
    bottle1.choose();
    bottle2.choose();
    if ((bottle1 == 'Sugar') && (bottle2 == 'Sugar'))
    {
        Console.Write("Sugar");
        sugar++;
    }
    else if ((bottle1 == 'Salt') && (bottle1 == 'Salt'))
    {
        salt++;
        Console.Write("Salt");
    }
    else
    {
        Console.Write("None");
    }
} while ((salt < 10) || (sugar < 10));
Comment

do while loop in c#

do
{
    //code block


} while(condition);
Comment

C# While Loops

int index = 1;
while (index <= 5)
{
    Console.WriteLine(index);
    index++;
} 

    Console.ReadLine();
Comment

c sharp while statement

public bool cando = true;

while (cando) // will run if cando stays true
{
    //code
    break; //here we break the while loop. it will not run anymore(we do this bc there is no really different option to break the cando bool)
}    
Comment

While loop in c#

int i = 0;
while (i < 20) 
{
  Console.WriteLine(i);
  i++;
}
Comment

PREVIOUS NEXT
Code Example
Csharp :: github action get commit tag 
Csharp :: basic auth swagger .net core 5 
Csharp :: single line and multiline comments in c 
Csharp :: datetime check null c# 
Csharp :: destroy the game object if the animator has finished its animation 
Csharp :: public tmpro text 
Csharp :: c# remove first three characters from string 
Csharp :: dotnet core 3.1 get the user that just logged in 
Csharp :: c# linq distinct group by nested list 
Csharp :: c# isdigit mehod 
Csharp :: c# function return 
Csharp :: C# using variables inside strings 
Csharp :: unity text custom color 
Csharp :: c# empty array 
Csharp :: transform.position.x unity 
Csharp :: rotation unity script 2d 
Csharp :: mongodb driver c# nuget 
Csharp :: limiting the amount of decimal places c# 
Csharp :: check if an object is active unity 
Csharp :: the .net core sdk cannot be located 
Csharp :: c# string ends with 
Csharp :: check if value in list c# 
Csharp :: c# how to print 
Csharp :: unity tilemap get all tiles 
Csharp :: get last index C# 
Csharp :: stringify c# 
Csharp :: unity reset random seed 
Csharp :: how to trim path in C# 
Csharp :: C# compare date values 
Csharp :: how to turn components on and off in unity through code 
ADD CONTENT
Topic
Content
Source link
Name
8+2 =