Example #1
0
        void sieveoferatosthenes_ForceGetInteger(ExecuteIntegerDelegate ExecuteDelegate)
        {
            PrimesBigInteger value = iscNumber.GetValue();

            if (value != null && ExecuteDelegate != null)
            {
                ExecuteDelegate(value);
            }
        }
Example #2
0
        void _rho_ForceGetValue(ExecuteIntegerDelegate del)
        {
            PrimesBigInteger value = inputnumbermanager.GetValue();

            if (value != null && del != null)
            {
                del(value);
            }
        }