Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

C# Dictionary to .csv

Tags:

c#

file

csv

I have C# Dictionary and I want create a .csv file from it. For example I have this dictionary:

Dictionary<string, string> data = new Dictionary<string, string>();
data.Add("0", "0.15646E3");
data.Add("1", "0.45655E2");
data.Add("2", "0.46466E1");
data.Add("3", "0.45615E0");

And I wanna this .csv file output:

0;0.15646E3;
1;0.45655E2;
2;0.46466E1;
3;0.45615E0;

How can I do this?

like image 749
user1387150 Avatar asked May 10 '12 16:05

user1387150


People also ask

What C is used for?

C programming language is a machine-independent programming language that is mainly used to create many types of applications and operating systems such as Windows, and other complicated programs such as the Oracle database, Git, Python interpreter, and games and is considered a programming foundation in the process of ...

What is the full name of C?

In the real sense it has no meaning or full form. It was developed by Dennis Ritchie and Ken Thompson at AT&T bell Lab. First, they used to call it as B language then later they made some improvement into it and renamed it as C and its superscript as C++ which was invented by Dr.

Is C language easy?

C is a general-purpose language that most programmers learn before moving on to more complex languages. From Unix and Windows to Tic Tac Toe and Photoshop, several of the most commonly used applications today have been built on C. It is easy to learn because: A simple syntax with only 32 keywords.

What is C in C language?

What is C? C is a general-purpose programming language created by Dennis Ritchie at the Bell Laboratories in 1972. It is a very popular language, despite being old. C is strongly associated with UNIX, as it was developed to write the UNIX operating system.


2 Answers

Maybe the easiest:

String csv = String.Join(
    Environment.NewLine,
    data.Select(d => $"{d.Key};{d.Value};")
);
System.IO.File.WriteAllText(pathToCsv, csv);

You'll need to add using LINQ and use at least .NET 3.5

like image 111
Tim Schmelter Avatar answered Oct 20 '22 10:10

Tim Schmelter


Try the following

using (var writer = new StreamWriter(@"the\path\to\my.csv")) {
  foreach (var pair in data) {
    writer.WriteLine("{0};{1};", pair.Key, pair.Value);
  }
}

Note: This will fail to work if the key or value elements can contain a ;. If so you will need to add an escaping mechanism to handle that

like image 29
JaredPar Avatar answered Oct 20 '22 09:10

JaredPar