GR.Gambling.Backgammon.Venue.OnlineMatchInfo.CreateMoneyMatchInfo C# (CSharp) Méthode

CreateMoneyMatchInfo() public static méthode

public static CreateMoneyMatchInfo ( string players, int creator, int ratings, int stake, int limit, string venue_id, int id, System.DateTime timestamp ) : OnlineMatchInfo
players string
creator int
ratings int
stake int
limit int
venue_id string
id int
timestamp System.DateTime
Résultat OnlineMatchInfo
        public static OnlineMatchInfo CreateMoneyMatchInfo(string[] players, int creator, int[] ratings, int stake, int limit, 
                                                            string venue_id, int id, DateTime timestamp)
        {
            OnlineMatchInfo match_info = new OnlineMatchInfo();

            match_info.players = players;
            match_info.creator = creator;
            match_info.ratings = ratings;
            match_info.stake = stake;
            match_info.limit = limit;
            match_info.venue_id = venue_id;
            match_info.id = id;
            match_info.timestamp = timestamp;

            return match_info;
        }