Is the object initializer in c# 3.0 faster then the regular way?
Is this faster
Object object = new Object { id = 1; }
than th
AFAIK it's just syntactic sugar - the IL produced will be the same