Dominion.ResultSetRanker.Result.Result C# (CSharp) Method

Result() public method

public Result ( string playerName1, string playerName2, double percentDiff ) : System
playerName1 string
playerName2 string
percentDiff double
return System
            public Result(string playerName1, string playerName2, double percentDiff)
            {
                this.playerName1 = playerName1;
                this.playerName2 = playerName2;
                this.percentDiff = percentDiff;
            }
ResultSetRanker.Result