CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: Zwei-Leben

Search: Search took 0.02 seconds.

  1. Replies
    3
    Views
    6,121

    Re: [RESOLVED] Help with increasing int!

    @ThermoSight, thankyou so much! Hours of frustration over.

    @BigEd781, I've read that article now and I understand what I was doing wrong, thanks a bunch.
  2. Replies
    3
    Views
    6,121

    [RESOLVED] Help with increasing int!

    case "north":
    Console.WriteLine("Moved North");
    int xCord;
    xCord++;
    int yCord = new int();
    yCord = 0;
    Console.WriteLine("(" + xCord + "," + yCord + ")");
    break;

    --
Results 1 to 2 of 2





Click Here to Expand Forum to Full Width

Featured