BodyTetrisWrapper.Logger.AddLogWithTime C# (CSharp) Method

AddLogWithTime() public method

public AddLogWithTime ( string log, float array ) : void
log string
array float
return 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