Is the object initializer in c# 3.0 faster then the regular way?
Is this faster
Object object = new Object { id = 1; }
than th
It may be faster to type, but it compiles to the same code so there is no runtime benefit.