Answers for "syntax loop in c#"

C#
-1

loop c#

using System;

namespace Loops {
   class Program {
      static void Main(string[] args) {
         for (; ; ) {
            Console.WriteLine("Hey! I am Trapped");
         }
      }
   }
}
Posted by: Guest on May-22-2021

C# Answers by Framework

Browse Popular Code Answers by Language