Advertisement
Guest User

bonusofka

a guest
Apr 23rd, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.68 KB | None | 0 0
  1. //Rextester.Program.Main is the entry point for your code. Don't change it.
  2. //Compiler version 4.0.30319.17929 for Microsoft (R) .NET Framework 4.5
  3.  
  4. using System;
  5. using System.Collections.Generic;
  6. using System.Linq;
  7. using System.Text.RegularExpressions;
  8. using System;
  9. using System.IO;
  10.  
  11. namespace Rextester
  12. {
  13.     public class Program
  14.     {
  15.         public static void Main(string[] args)
  16.         {
  17.             // Vypisem co chcem
  18.             Console.WriteLine("Hello Stevo");
  19.            
  20.             // Presmerujem vystup z konzoly "nikam"
  21.             Console.SetOut(new StreamWriter(Stream.Null));
  22.            
  23.             Console.WriteLine("555555");
  24.         }
  25.     }
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement