Is there any performance gain when using features from C# 6.0? -
do c# 6.0 features (like expression-bodied method-like members, using static
, null-conditional operator or string interpolation) have impact on performance of program or @ least compiling time? new features asking myself when using them if there performance gain/issue.
not really. new features merely syntactic sugar things possible in c#.
the code generated new features, null-propagation operator, yield same c# code have had before.
it make you better performing , possibly code quality better, thing.
Comments
Post a Comment