while loopற்குள்ளே goto அறிக்கை



இந்த goto முக்கிய சொல் பெயரிடப்பட்ட லேபிளுக்கு கட்டுப்பாட்டை மாற்றுகிறது.

int num= 1;
while (num< 10)
{
    num= num+ 1;
    if (num>5)
    goto ReadKey;
    Console.WriteLine("The value of num is : " + num);
}
Console.WriteLine("Loop End here");
ReadKey:
Console.WriteLine("Jump to here.....");

வெளியீடு

The value of num is : 2
The value of num is : 3
The value of num is : 4
The value of num is : 5
Jump to here.....
Ragam

I want to be a good person

Post a Comment (0)
Previous Post Next Post