private static void InitializeNonTheoreticalDictionary(string codePart)
        {
            operandDictionary = new OperandDictionary(codePart);

            codePart = CodePartsDeleter.DeleteConstStrings(codePart);
            codePart = CodePartsDeleter.DeleteConstChars(codePart);
            operatorDictionary = new OperatorDictionary(codePart);
        }
        private static void InitializeTheoreticalDictionary(string codePart)
        {
            theoreticalOperandDictionary = new OperandDictionary(codePart);

            Modul.CutInnerClassesCodesFromClassBody(ref codePart);
            codePart = CodePartsDeleter.DeleteConstStrings(codePart);
            codePart = CodePartsDeleter.DeleteConstChars(codePart);
            theoreticalOperatorDictionary = new OperatorDictionary(codePart);
        }