.NET,Serialization - n.code

Browse by Tags

14 May 2007
Bulk Update and Insert of Object State Stored by SQL Server 2000, Using .NET (C#)
This is a how to/quick start for doing bulk inserts or updates of data on SQL Server 2000 and .NET. 1. Create a simple class: using System; ... ... [Serializable] public class Entity { private int _id; private string _name; private string _description; public int ID { get { return _id; } } public string... Read More...
19 April 2007
.NET Memory Leak: XmlSerializing your way to a Memory Leak
Tess Ferrandez talks about a .NET memory leak , caused by using the default constructors other than, XmlSerializer(type) and XmlSerializer(type, defaultNameSpace), when XML serializing objects. In a nut shell, dynamic code generation, which is used in XML Serialization, Regular Expressions, and XSLT... Read More...