using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;
namespace ABC
{
class Program
{
static void Main(string[] args)
{
string userInput;
List<string> a = new List<string>();
do
{
Console.WriteLine(">>> NAME <<<");
Console.WriteLine("1 - Add");
Console.WriteLine("0 - Exit");
//get user's choice/input
userInput = Console.ReadLine();
//actions to take after user's choice/input
switch (userInput)
{
case "1":
//Add list to store info
Console.WriteLine("B");
//capture details
a.Add("Name: ");
a.Add("Surname: ");
a.Add("Address: ");
a.Add("Telephone: ");
a.Add("Cell: ");
a.Add("Email: ");
a.Add("Web: ");
a.Add("Date: ");
foreach (string i in a)
{
Console.Write(i);
Console.ReadLine();
}
FileStream fs = new FileStream("myfile.txt",FileMode.Create,FileAccess.ReadWrite);
StringBuilder sb = new StringBuilder();
foreach (string str in a)
{
StreamReader sr = new StreamReader();
{
sb.AppendLine(str.ToString());
sb.Append(sr.ReadToEnd());
sb.AppendLine();
}
}
StreamWriter sw = new StreamWriter(@"myfile.txt");
sw.Write(sb.ToString());
break;
case "0":
Console.WriteLine("BYE!!!");
break;
default:
Console.WriteLine("{0} is not a valid choice", userInput);
break;
}
//allow user to see results
Console.Write("press 'Enter' to continue...");
Console.ReadLine();
Console.WriteLine();
}
// Keep going until the user wants to quit
while (userInput != "0");
}
}
}
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|||||||
|
|
I did not run your code, but: a) don't forget to b) it looks like you always add those "data fields" to you list (do it once, on clear it every time you add a new set) |
|||||||||
|
|
You got a Deleting the line
and relplacing
with
should do the trick. Edit: Your program is doing exactly what you told it to do. So here is the functionality that I think that you want to achieve: case "1": //Add list to store info Console.WriteLine("B");
|
|||||||||||
|
