how to make infinite loop in c#

C#
for (int i = myArray.Length - 1; i >= 0; i--)  
{  
    // Do something ...  
} const array = [6,7,8,9,10];
for (const number of array.reverse()) {
    console.log(number);
}for (int a = 0; a < 50; a--)
{
  // Whatever You Want To Do.
}
Source

Also in C#: