Browse by Tags

All Tags » VB » text file » C# (RSS)
The number of lines of code is not a very useful metric for evaluating good code or a good developer. However, it is sometimes useful to know how much code you have. For example, I recently worked on a project converting a VB 6 application to .NET. When...
6 comment(s)
Filed under: , , , ,
There may be times that you need to read fixed length files into your application. For example, you obtain output from a legacy system or other application in a fixed length text file format, and you need to read and use that data in your application...
There may be times that you need to read comma separated value (CSV) files into your application. For example, you obtain output from a legacy system or other application in a comma delimited text file format, and you need to read and use that data in...
There are many different types of text files that you may need to process in your applications. Some of the more common types are described in this post. Delimited files Delimited files separate the fields of the file with some type of a delimiter. The...
8 comment(s)
Filed under: , , , , ,
There are often times that you need to write out text files containing data managed by your application. For example, you may need to write out a file to be read by another system. In many cases, this file needs to have a particular format, with justified...