BodyTetrisWrapper.Logger.AddLogWithTime C# (CSharp) Méthode

AddLogWithTime() public méthode

public AddLogWithTime ( string log, float array ) : void
log string
array float
Résultat void
        public void AddLogWithTime(string log, float[] array)
        {
            log += " ";
            for (int i = 0; i < array.Length; i++)
            {
                log += array[i] + ",";
            }
            AddLogWithTime(log);
        }

Same methods

Logger::AddLogWithTime ( string log ) : void
Logger::AddLogWithTime ( string log, int array ) : void