MatchOutcome CreateMatchOutcomeWithPlacements()
        {
            MatchOutcome buffer = new MatchOutcome();

            for (int i = 0; i < participantIds.Length; i++)
            {
                buffer.SetParticipantPlacement((string)participantIds.Values[i], (uint)placements.Values[i]);
            }
            return(buffer);
        }