Dupire.DupireProcess.isLog C# (CSharp) Метод

isLog() публичный Метод

Sets the passed array with a Boolean stating if the process must be simulated as a log-normal process. In this case it's a log-normal process so the first component is set to true.
public isLog ( bool &isLog ) : void
isLog bool /// A reference to the array to be set with the required information. ///
Результат void
        public void isLog(ref bool[] isLog)
        {
            isLog[0] = true;
        }