|
||||||
| CSharp Tutorials Tutorials for C# |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Display Modes |
|
|||||
|
I'm sorry for the misunderstanding. What I meant was that console doesn't stay up so that I can enter the text in. But I got it to work now. Small overlooked error:
Code:
using System;
using System.Collections.Generic;
using System.Text;
using System.IO;
public class writetext
{
static void Main()
{
//Ask for text to write to buffer
Console.WriteLine("What would you like to write to text file? ");
Console.Read();
string buffer = Console.ReadLine();
//Write buffer to textfile
string path = @"C:/Users/MyName/Documents/C# file.txt";
StreamWriter txtwrite = new StreamWriter(path);
txtwrite.WriteLine(buffer);
txtwrite.Close();
txtwrite.Dispose();
}
}
|
|
|||||
|
There is a new problem now. The text writes fine to the .txt file, but it cuts off the first letter. Don't ask me why, but do you have an idea of what the problem could be?
|
|
|||||
|
It's that new line - Console.Read() reads a single character from the input. Therefore, when you type, the first letter goes to the Console.Read() bit, and the rest goes to the Console.ReadLine(), which is put in the buffer. Therefore, try this instead:
Code:
string buffer = Console.Read().ToString() + Console.ReadLine(); |
![]() |
| Tags |
| file, text, tutorial, writing |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | Search this Thread |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Tutorial: Storing Images in MySQL with PHP | Jordan | PHP Tutorials | 13 | 09-23-2008 07:11 PM |
| Text files | travy92 | Visual Basic Programming | 1 | 10-07-2007 11:06 AM |
| How to style fonts of a text in a simple page? | c0de | Tutorials | 3 | 09-15-2007 11:08 PM |
| HTML Basic Formatting | clookid | Tutorials | 14 | 03-06-2007 04:10 PM |
| John's Java Tutorial Index | John | Java Tutorials | 0 | 01-11-2007 04:05 PM |
| WingedPanther | ........ | 2753.6 |
| Xav | ........ | 2704 |
| Brandon W | ........ | 1702.32 |
| John | ........ | 1207.73 |
| marwex89 | ........ | 1175.24 |
| morefood2001 | ........ | 966.05 |
| dcs | ........ | 655.75 |
| Steve.L | ........ | 475.59 |
| orjan | ........ | 418.58 |
| Aereshaa | ........ | 383.54 |
Goal: 100,000 Posts
Complete: 98%