In Visual Studio 2013 we shipped an implementation of non-static data member initialization (hereby referred to as “NSDMI”), which is a feature that allows code such as the following:
class C { int n = 42; };
Here, n is a non-static...(read more)
↧