streamwriter
saving data in csv file
I have a problem to save data in .csv file. void WriteLog(DataRow rzad) { StreamWriter sw = new StreamWriter(\"log.csv\", true);[详细]
2023-02-17 06:30 分类:问答threads synchronisation in little application
I have the following problem. I finishing my application, which one do something. Simultaneously some code (drwaing charts and save data to log file) can be using by a few threads. I can\'t synchorniz[详细]
2023-02-16 20:11 分类:问答Use StreamWriter or Stream outside of Function
I need to make a function to send commands to the Stream from process.StandardInput. I am having an error with the writer not be initial开发者_开发知识库ized. How can I fix this?[详细]
2023-02-16 17:17 分类:问答error while redirecting process input from file
I\'m receiving an output error while trying to redirect a process input from a file - reading the file content and writing it to the process input.[详细]
2023-02-14 16:14 分类:问答Invalid argument in StreamWriter constructor?
In C# 3.0, framework, vs. 3.0 (assembly mscorlib.dll, v2.0.50727) System.IO.StreamWriter has a.o. the following constructors:[详细]
2023-02-12 04:13 分类:问答Edit a text file over FTP in C#?
I want to, basically, use the following code to edit a C# file: var file = new StreamReader(\"ftp://xxx.xxx.x.x/xxx.txt\"); //[开发者_开发百科ip address/file][详细]
2023-02-10 11:05 分类:问答FileStream vs/differences StreamWriter?
Question: What is different between FileStream and StreamWriter in .Net? What context are you supposed to use it? What is their advantage and disadvantage?[详细]
2023-02-10 07:31 分类:问答StreamWriter Only Works on Some Workstations
I have a page on an intraweb (that I didn\'t create) which allows a user to specify a .txt file and then it writes the results of a SQL stored procedure to the file using StreamWriter.[详细]
2023-02-01 01:03 分类:问答How reading messages from Server? (tcp)
Client write to server - server read. and Server write to client - client not read. Server: using System;[详细]
2023-01-31 18:12 分类:问答asp.net form output: streamwriter to write to file versus database connection
I have to make an ASP.net form and only need to gather 3 fields: name, bday and email. Do you think it\'s best to write the info to a csv or xml file, or do you think it\'s worth it to write to a SQL[详细]
2023-01-29 11:58 分类:问答