Is the object initializer in c# 3.0 faster then the regular way?
Is this faster
Object object = new Object { id = 1; }
than th
No, it's the same thing.