Schlagwort-Archive: Export

DynamicTable to DataTable

The DynamicTable object is a dynamic and expandable data class to store a table. You will find an introduction to this data class in a previous article. In the actual version of the DynamicTable I have added the functionality to … Weiterlesen

Veröffentlicht unter .NET, C#, DynamicObjects | Verschlagwortet mit , , , , | Kommentar hinterlassen

Get files recursive by using list or sequence

Within this article I want to show you a little application which recursive searches all files in directories and subdirectories and write the results to a text file. This article contains two possible solutions for this application. One solution is … Weiterlesen

Veröffentlicht unter .NET, F# | Verschlagwortet mit , , , , | Kommentar hinterlassen

PowerShell: Export EventLog to CSV and remove CR/LF

The windows event logs containing a lot of useful information and for example may help you to analyze software issues. By using the Windows PowerShell it is very easy to get the data of event logs and export this data … Weiterlesen

Veröffentlicht unter PowerShell | Verschlagwortet mit , , | 1 Kommentar

PowerShell: CSV to XML

I think all of you know the following issue: A colleague or customer gave you a data file and you want to open the file with your existing programs. And in most cases the format of the file does not … Weiterlesen

Veröffentlicht unter PowerShell | Verschlagwortet mit , , , , | 1 Kommentar

LINQ to XML

The System.Xml.Linq namespace offers an easily and efficiently way to create, read and modify XML documents. Within this article I want to show you the basic concept to create and read a XML document.   Create a XML document In … Weiterlesen

Veröffentlicht unter .NET, C#, LINQ | Verschlagwortet mit , | Kommentar hinterlassen

LINQ to CSV: Schreiben einer CSV Datei mittels LINQ

Das sich CSV Dateien mittels LINQ lesen lassen, habe ich Ihnen in einem vorhergehenden Artikel bereits gezeigt. Jetzt wäre es natürlich wünschenswert die CSV Dateien ebenfalls mittels LINQ zu erzeugen. In diesem Artikel möchte ich Ihnen daher eine Erweiterungsmethode vorstellen, … Weiterlesen

Veröffentlicht unter .NET, C#, LINQ | Verschlagwortet mit , | Kommentar hinterlassen