コード例 #1
0
        private static void InitializeNonTheoreticalDictionary(string codePart)
        {
            operandDictionary = new OperandDictionary(codePart);

            codePart = CodePartsDeleter.DeleteConstStrings(codePart);
            codePart = CodePartsDeleter.DeleteConstChars(codePart);
            operatorDictionary = new OperatorDictionary(codePart);
        }
コード例 #2
0
        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);
        }