Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Simple loop in C#
Message
 
To
10/10/2006 11:34:47
Keith Payne
Technical Marketing Solutions
Florida, United States
General information
Forum:
ASP.NET
Category:
Coding, syntax and commands
Miscellaneous
Thread ID:
01160532
Message ID:
01161169
Views:
25
One more for the pot
using System;
using System.Collections.Generic;
using System.Text;

namespace pkloop
{
    class Program
    {
        static void Main(string[] args)
        {
            string temp = "Hello World";

            for (int i = temp.Length -1; i >= 0 ; --i)
                Console.Write(temp[i]);

            Console.WriteLine();
        }
    }
}
Regards,
Peter J. Kane



Pete
Previous
Reply
Map
View

Click here to load this message in the networking platform