Console.Out is a TextWriter : Console Redirect : Development C# Examples


C# Examples » Development » Console Redirect »

 

Console.Out is a TextWriter









    
using  System;
using  System.Collections.Generic;
using  System.Collections.Specialized;
using  System.IO;
using  System.IO.Compression;
using  System.Net;
using  System.Net.Mail;
using  System.Net.Sockets;
using  System.Runtime.InteropServices;
using  System.Text;

public  class  MainClass
{
        public  static  void  Main()
        {
                using  (TextWriter  tw  =  Console.Out)
                {
                        tw.Write(302.30m);  
                        tw.Write("str");  
                        tw.Write(true);  
                        tw.WriteLine('.');
                }
        }
}
    
   
  
   



Output

302.30strTrue.


HTML code for linking to this page:

Follow Navioo On Twitter

C# Examples

 Navioo Development
» Console Redirect