Is the object initializer in c# 3.0 faster then the regular way?
Is this faster
Object object = new Object { id = 1; }
than th
If there are any performance differences (which I doubt there are any), they're negligible. Optimize only where profiler told you to do so.