private void InitializeSets()
        {
            var sets = new List <string>()
            {
                AllSets
            };

            sets.AddRange(_instructionSetManager.GetInstructionSets().Select(s => s.SetName));

            _instructionSets = sets.ToArray();
            var currentSet = _instructionSetManager.GetInstructionSet();

            _currentSet = currentSet == null ? AllSets : currentSet.SetName;
        }