Results 1 to 15 of 22

Threaded View

  1. #14
    Chhaos.'s Avatar
    Join Date
    Mar 2015
    Gender
    male
    Location
    C#
    Posts
    76
    Reputation
    10
    Thanks
    7
    My Mood
    Amazed
    Name : Recorder
    Keywords : .txt
    Description : It shows you a console where if you write a text, it will show in "uloziste.txt".


    Code:
    using System. IO;
    
    
    static void Main(string[] args)
            {
                Console.ForegroundColor = ConsoleColor.Yellow;
                Console.Title = "Zapisovač - by Chhaos.";
                Console.Out.WriteLine("Chcete zpustit zapisovač ? [y/n]");
    
                string em = Console.ReadLine();
    
                if (em == "n")
                {
                    Console.Clear();
                    Console.ForegroundColor = ConsoleColor.Cyan;
                    Console.Out.WriteLine("Program ukončíte libovolnout klávesou.");
                    Console.ReadLine();
                }
    
                while (em == "y") 
    
                {
    
                Console.ForegroundColor = ConsoleColor.Red;
    
                Console.Clear();
                Console.Out.WriteLine("Můžete psát. Jméno souboru bude uloziste.txt - neměnit jméno !     ");
                Console.Out.WriteLine("                                                                      by Chhaos.");
                Console.Out.WriteLine("");
    
                string a = Console.ReadLine();
    
                StreamWriter sr = new StreamWriter("uloziste.txt", true);
    
                sr.WriteLine(a);
    
                sr.Close();
    
                }
    Last edited by Chhaos.; 04-25-2015 at 10:35 AM.

Similar Threads

  1. [Source Code] Snippets Vault
    By NextGen1 in forum Visual Basic Programming
    Replies: 112
    Last Post: 06-14-2019, 07:51 PM
  2. [Collection]Snippets Vault[PHP]
    By NextGen1 in forum PHP Programming
    Replies: 13
    Last Post: 10-13-2018, 09:10 PM
  3. [Collection]Snippets Vault[Assembly]
    By NextGen1 in forum Assembly
    Replies: 5
    Last Post: 11-05-2012, 01:10 AM
  4. [Collection]Snippets Vault[Flash]
    By NextGen1 in forum Flash & Actionscript
    Replies: 3
    Last Post: 10-14-2011, 03:08 AM
  5. [Collection]Snippets Vault[D3D]
    By NextGen1 in forum DirectX/D3D Development
    Replies: 0
    Last Post: 09-28-2010, 08:36 AM