for – To split a DataTable into more DataTables you need to process table rows with a loop, you know how many rows you have, so for loop is the choice. Clone – The fastest method to create tables with original columns structure is Clone method. ImportRow – In order to preserve rows states while [...]
Definitive .NET Obfuscation Solution: Eazfuscator
I’m using this free obfuscator (Eazfuscator) from an year with tons of lines of code, with also .NET Compact Framework code, it’s great. And most important thing I see in this obfuscator is that you don’t have to think about it! Download and Install Open Eazfuscator GUI From Visual Studio (all versions), drag project folder [...]
.NET 2.0 Serialize and Deserialize Dataset With Row State
Serialize an object is not very difficult, but we have to understand why I decided to implement some features, so my goal is: Simple load and save data on a file Client-Server data communication so I have two thinks to take care: Some field may be DBNull (not null) DataRows have a row state to [...]
Nini is an uncommonly powerful .NET configuration library
I was searching for a ini file library for .NET that supports XML files like My.Settings; I’ve tried many libraries from CodeProject and co. but after 3 hours, I’ve found this on SourceForge, wow. Features Multiple configuration types INI, XML, Registry, and command line Strong variable types String, int, float, etc. Eliminates casts Set and save [...]