コード例 #1
0
        static ConstNumbers()
        {
            FILENAME = CommonTool.GetAssemblyPath() + @"const.xml";

            _constsDic = new Dictionary <string, double>();
            LoadConsts();
        }
コード例 #2
0
 static UserDefinFuncManager()
 {
     FILENAME   = CommonTool.GetAssemblyPath() + @"ufunc.xml";
     _userFuncs = new Dictionary <string, string>();
     LoadUfuncs();
 }
コード例 #3
0
ファイル: FunctionManager.cs プロジェクト: amwtke/myconputer
 static FunctionManager()
 {
     _funcDic = new Dictionary <string, IFunctionConponent>();
     LoadFuncModels(CommonTool.GetAssemblyPath());
 }