コード例 #1
0
        private static long[] Values(StageExecution execution)
        {
            long[] values = new long[execution.Size()];
            int    i      = 0;

//JAVA TO C# CONVERTER WARNING: Java wildcard generics have no direct equivalent in .NET:
//ORIGINAL LINE: for (Step<?> step : execution.steps())
            foreach (Step <object> step in execution.Steps())
            {
                values[i++] = Avg(step.Stats());
            }
            return(values);
        }