Your output is correct based on what you entered. /r is a Carriage Return
ONLY.
...Glenn
On Tue, Nov 4, 2008 at 4:00 AM, VIKAS GARG <[EMAIL PROTECTED]> wrote:
> Usman This eg will make the concept easier
> using System;
> using System.Collections.Generic;
> using System.Text;
>
> namespace ConsoleApplication74
> {
> class Program
> {
> static void Main(string[] args)
> {
> Console.Write("This is First Line \r and This is Second");
> Console.ReadKey();
> }
> }
> }
>
>
> According to you the output should be
> This is First Line
> and This is Second
>
>
>
> But the output of the prog is
> and This is Second
>
>
> Why is this happenings
>