Tagged Questions

5
votes
4answers
4k views

Best free Excel writer for C# to output datatable to excel

I've got a console app that loads up a datatable; I'd like to export that to an Excel format and attach it to an email that's sent out on a regular basis. What is the best library to do so that I can ...
2
votes
1answer
109 views

Help understanding the Reader/Writer pattern in .NET

Here's the documentation for the method XContainer.CreateWriter: Creates an XmlWriter that can be used to add nodes to the XContainer. I parse the text with my mind, I get: A method ...
1
vote
3answers
110 views

Converting XML to String[] help

I'm having Trouble converting the contents of XML document to an int[] or string[] I'm saving the x and y coordinates of 20 different picture boxes on the screen (For a jigsaw Puzzle Program) to an ...
1
vote
1answer
73 views

Replacing file content without readers clients access interruption

There is a service which constantly writes new content to a file: using (var stream = File.Create(FileName)) // overwrites the file { stream.Write(data, 0, data.Length); } The file is ...
1
vote
4answers
2k views

Thread safe StreamWriter C# how to do it? 2

So this is a continuation from my last question - So the question was "What is the best way to build a program that is thread safe in terms that it needs to write double values to a file. If the ...
0
votes
2answers
84 views

C# How to delete the first line of my text files?

I want to create a Windows Forms app in Visual Studio that writes text files on a button click. I have a txt file (e.g. test.txt) which contains AAAA BBBB CCCC DDDD EOS FFFF GGGG HHHH IIII EOS JJJJ ...
0
votes
1answer
126 views

Full code coverage

I'm trying to obtain full code coverage for the following line of code... stringWriter.Write(HtmlEncodedString.Format(string.Format("{0,-10:C}", x + y))) The line above this one is showing as fully ...