Posts Tagged ‘.NET’

Amazon EC2 running Microsoft Windows Server 2003

October 24th, 2008 by jf | comments No Comments | categories Filed in Uncategorized

This is some really great stuff that amazon has released since the boom towards cloud computing. After Linux based clouds, now Windows based clouds are available and ready to perform. It’s a great opportunity for developers to be able to create application for a cloud. I’ll be definitely trying it out any where soon with [...]

tagsTags: , , , ,

Copy custom object in C#

August 9th, 2007 by jf | comments No Comments | categories Filed in .NET, C#, Tech

There are several ways to clone custom object in .NET.

Using reflection to get information about each field and properties in the custom class, create a new instance and assign the proper value.
Manually implementing the clone method and assign each field and method and then return a new object
Using serialization and deserialization.

I have tried [...]

tagsTags: ,