Esempio n. 1
0
 public ConstBaseFun(BaseFunctions funs, string code, int errNum)
     : base(funs, code, errNum)
 {
 }
Esempio n. 2
0
 //Создание экземпляра делегата функции
 protected abstract void CreateDelegateInstance(BaseFunctions funs, MethodInfo met);
Esempio n. 3
0
 protected override void CreateDelegateInstance(BaseFunctions funs, MethodInfo met)
 {
     Fun = (ConstDelegate)Delegate.CreateDelegate(typeof(ConstDelegate), funs, met);
 }
Esempio n. 4
0
 protected ScalarBaseFun(BaseFunctions funs, string code, int errNum)
     : base(funs, code, errNum)
 {
 }
Esempio n. 5
0
 //Создание экземпляра делегата функции
 protected override void CreateDelegateInstance(BaseFunctions funs, MethodInfo met)
 {
     _fun = (ScalarComplexDelegate)Delegate.CreateDelegate(typeof(ScalarComplexDelegate), funs, met);
 }
Esempio n. 6
0
 public MomentsFun(BaseFunctions funs, string code, int errNum)
     : base(funs, code, errNum)
 {
 }