var original = new DateTime(2010, 11, 24);
var clone = original;
DateTime
is a value type, so when you assign it you also clone it. That said, there's no point in cloning it because it's immutable; typically you'd only clone something if you had the intention of changing one of the copies.