I\'ve got a situation which can be summarized in the following:
class Test { Test(); int MySet[10]; };
is it possible to initialize
Unfortunately, in C++03, you cannot initialize arrays in initializer lists. You can in C++11 though if your compiler is newer :)
see: How do I initialize a member array with an initializer_list?